2021-03-02 11:41:53 -05:00
|
|
|
/*
|
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2021 Lucian Copeland for Adafruit Industries
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "py/runtime.h"
|
|
|
|
#include "common-hal/alarm/SleepMemory.h"
|
|
|
|
|
2021-06-25 17:43:18 -04:00
|
|
|
#include STM32_HAL_H
|
|
|
|
|
|
|
|
#define STM_BKPSRAM_SIZE 0x1000
|
|
|
|
#define STM_BKPSRAM_START BKPSRAM_BASE
|
|
|
|
|
|
|
|
STATIC bool initialized = false;
|
|
|
|
|
|
|
|
STATIC void lazy_init(void) {
|
|
|
|
if (!initialized) {
|
|
|
|
__HAL_RCC_BKPSRAM_CLK_ENABLE();
|
|
|
|
HAL_PWREx_EnableBkUpReg();
|
|
|
|
HAL_PWR_EnableBkUpAccess();
|
|
|
|
initialized = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-02 11:41:53 -05:00
|
|
|
void alarm_sleep_memory_reset(void) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t common_hal_alarm_sleep_memory_get_length(alarm_sleep_memory_obj_t *self) {
|
2021-06-25 17:43:18 -04:00
|
|
|
lazy_init();
|
|
|
|
return STM_BKPSRAM_SIZE;
|
2021-03-02 11:41:53 -05:00
|
|
|
}
|
|
|
|
|
2021-05-10 18:04:43 -04:00
|
|
|
bool common_hal_alarm_sleep_memory_set_bytes(alarm_sleep_memory_obj_t *self, uint32_t start_index, const uint8_t *values, uint32_t len) {
|
2021-06-25 17:43:18 -04:00
|
|
|
if (start_index + len > STM_BKPSRAM_SIZE) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
lazy_init();
|
|
|
|
memcpy((uint8_t *)(STM_BKPSRAM_START + start_index), values, len);
|
|
|
|
return true;
|
2021-03-02 11:41:53 -05:00
|
|
|
}
|
|
|
|
|
2021-05-10 18:04:43 -04:00
|
|
|
void common_hal_alarm_sleep_memory_get_bytes(alarm_sleep_memory_obj_t *self, uint32_t start_index, uint8_t *values, uint32_t len) {
|
2021-06-25 17:43:18 -04:00
|
|
|
if (start_index + len > STM_BKPSRAM_SIZE) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
lazy_init();
|
|
|
|
memcpy(values, (uint8_t *)(STM_BKPSRAM_START + start_index), len);
|
2021-03-02 11:41:53 -05:00
|
|
|
return;
|
|
|
|
}
|