2020-12-18 20:15:29 +00:00
|
|
|
#include <api-hal-flash.h>
|
|
|
|
#include <api-hal-bt.h>
|
|
|
|
#include <stm32wbxx.h>
|
|
|
|
|
2021-01-08 04:42:48 +00:00
|
|
|
bool api_hal_flash_erase(uint8_t page, uint8_t count) {
|
FL-53: new NFC worker, A/B/F/V poll and display. (#283)
* GUI: view. Flooper-blooper fix compilation error.
* GUI: view and viewdispatcher bones
* GUI: view implementation, view models, view dispatcher
* GUI: view navigation, model refinement. Power: use view, view dispatcher.
* HAL Flash: proper page write. Dolphin: views. Power: views
* Dolphin: transition idle scree to Views
* Dolphin: input events on stats view. Format sources.
* HAL: flash erase. Dolphin: permanent state storage.
* Dolphin: first start welcome. HAL: flash operation status, errata 2.2.9 crutch.
* NFC: rewrite worker
* NFC: add support for B,F,V.
* NFC: replace rfal irq hanlder with realtime thread, more details about cards.
* Bootloader: LSE and RTS shenanigans, LED control, morse code for LSE failure error.
* F4: stop in Error_Handler
* BLE: handle working FUS, but empty radio stack.
* HAL: alive FUS is now sufficient for flash controller access
* Dolphin: update model after state load
* NFC: detect navigation
* RFAL: use osPriorityISR for isr thread
* NFC: emulation
* Bootloader: rollback incorrectly merged rename
* Dolphin: rollback incorrectly merged changes
* RFAL: remove volatile from thread attr
* RFAL: do not call platform ErrorHandler, error codes is enough
* NFC: improved error handling
* Format sources
* NFC: reset detect view model on start
* Format sources
* update codeowners
* NFC: hide last info if no card detected
2021-01-11 12:42:25 +00:00
|
|
|
if (!api_hal_bt_lock_flash()) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-01-08 04:42:48 +00:00
|
|
|
FLASH_EraseInitTypeDef erase;
|
|
|
|
erase.TypeErase = FLASH_TYPEERASE_PAGES;
|
|
|
|
erase.Page = page;
|
|
|
|
erase.NbPages = count;
|
|
|
|
uint32_t error;
|
|
|
|
HAL_StatusTypeDef status = HAL_FLASHEx_Erase(&erase, &error);
|
2020-12-18 20:15:29 +00:00
|
|
|
api_hal_bt_unlock_flash();
|
2021-01-08 04:42:48 +00:00
|
|
|
return status == HAL_OK;
|
2020-12-18 20:15:29 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 04:42:48 +00:00
|
|
|
bool api_hal_flash_write_dword(size_t address, uint64_t data) {
|
FL-53: new NFC worker, A/B/F/V poll and display. (#283)
* GUI: view. Flooper-blooper fix compilation error.
* GUI: view and viewdispatcher bones
* GUI: view implementation, view models, view dispatcher
* GUI: view navigation, model refinement. Power: use view, view dispatcher.
* HAL Flash: proper page write. Dolphin: views. Power: views
* Dolphin: transition idle scree to Views
* Dolphin: input events on stats view. Format sources.
* HAL: flash erase. Dolphin: permanent state storage.
* Dolphin: first start welcome. HAL: flash operation status, errata 2.2.9 crutch.
* NFC: rewrite worker
* NFC: add support for B,F,V.
* NFC: replace rfal irq hanlder with realtime thread, more details about cards.
* Bootloader: LSE and RTS shenanigans, LED control, morse code for LSE failure error.
* F4: stop in Error_Handler
* BLE: handle working FUS, but empty radio stack.
* HAL: alive FUS is now sufficient for flash controller access
* Dolphin: update model after state load
* NFC: detect navigation
* RFAL: use osPriorityISR for isr thread
* NFC: emulation
* Bootloader: rollback incorrectly merged rename
* Dolphin: rollback incorrectly merged changes
* RFAL: remove volatile from thread attr
* RFAL: do not call platform ErrorHandler, error codes is enough
* NFC: improved error handling
* Format sources
* NFC: reset detect view model on start
* Format sources
* update codeowners
* NFC: hide last info if no card detected
2021-01-11 12:42:25 +00:00
|
|
|
if (!api_hal_bt_lock_flash()) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-01-08 04:42:48 +00:00
|
|
|
HAL_StatusTypeDef status = HAL_FLASH_Program(FLASH_TYPEPROGRAM_DOUBLEWORD, address, data);
|
2020-12-18 20:15:29 +00:00
|
|
|
api_hal_bt_unlock_flash();
|
2021-01-08 04:42:48 +00:00
|
|
|
return status == HAL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool api_hal_flash_write_row(size_t address, size_t source_address) {
|
FL-53: new NFC worker, A/B/F/V poll and display. (#283)
* GUI: view. Flooper-blooper fix compilation error.
* GUI: view and viewdispatcher bones
* GUI: view implementation, view models, view dispatcher
* GUI: view navigation, model refinement. Power: use view, view dispatcher.
* HAL Flash: proper page write. Dolphin: views. Power: views
* Dolphin: transition idle scree to Views
* Dolphin: input events on stats view. Format sources.
* HAL: flash erase. Dolphin: permanent state storage.
* Dolphin: first start welcome. HAL: flash operation status, errata 2.2.9 crutch.
* NFC: rewrite worker
* NFC: add support for B,F,V.
* NFC: replace rfal irq hanlder with realtime thread, more details about cards.
* Bootloader: LSE and RTS shenanigans, LED control, morse code for LSE failure error.
* F4: stop in Error_Handler
* BLE: handle working FUS, but empty radio stack.
* HAL: alive FUS is now sufficient for flash controller access
* Dolphin: update model after state load
* NFC: detect navigation
* RFAL: use osPriorityISR for isr thread
* NFC: emulation
* Bootloader: rollback incorrectly merged rename
* Dolphin: rollback incorrectly merged changes
* RFAL: remove volatile from thread attr
* RFAL: do not call platform ErrorHandler, error codes is enough
* NFC: improved error handling
* Format sources
* NFC: reset detect view model on start
* Format sources
* update codeowners
* NFC: hide last info if no card detected
2021-01-11 12:42:25 +00:00
|
|
|
if (!api_hal_bt_lock_flash()) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-01-08 04:42:48 +00:00
|
|
|
HAL_StatusTypeDef status = HAL_FLASH_Program(FLASH_TYPEPROGRAM_FAST, address, source_address);
|
|
|
|
api_hal_bt_unlock_flash();
|
|
|
|
return status == HAL_OK;
|
2020-12-18 20:15:29 +00:00
|
|
|
}
|