Настройка размера кеша у микросхемы flash-памяти по размеру прошивки #24

Merged
klassents merged 4 commits from v0.5.1_flashCache into v0.5.1 2025-05-30 07:49:20 +03:00
2 changed files with 0 additions and 12 deletions
Showing only changes of commit 44faa66797 - Show all commits

View File

@ -8,9 +8,4 @@ extern volatile bool use_error_messages;
// function for init called after setup()
void post_init(void);
void updateCacheLimit(void);
#include "stdint.h"
uint32_t getCLimit(void);
#endif /* _BOARD_H_ */

View File

@ -7,16 +7,9 @@
void initVariant() __attribute__((weak));
void initVariant() { }
#include "xprintf.h"
extern "C" int main(void) __attribute__((weak));
int main()
{
Serial.begin(9600);
xprintf("old_climit = 0x%08lX\n", getCLimit());
updateCacheLimit();
xprintf("new_climit = 0x%08lX\n", getCLimit());
initVariant(); // for freeRTOS
setup();
post_init();