diff options
author | Ben V. Brown <[email protected]> | 2022-10-20 18:06:05 +1100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-10-20 18:06:05 +1100 |
commit | 1a3d6ba219232c8d66f0dca37d12e64ae56fa7dd (patch) | |
tree | f6b323e490273fd8e4f199fc39bde0247ade51d0 /source/Core/BSP/Pinecil | |
parent | 82f49b5f50dd27009f5a769d3c00fe4e00db3b41 (diff) | |
download | IronOS-1a3d6ba219232c8d66f0dca37d12e64ae56fa7dd.tar.gz IronOS-1a3d6ba219232c8d66f0dca37d12e64ae56fa7dd.zip |
Fixing up TS80P Build (#1429)
* Silence wchart warning + go back to simple size limiter
Going from smart linker file to basic #defines to make things just easier to debug
* 2 deg c increments for NTC table
* Update cmsis_gcc.h
* Drop special linker
* Update portmacro.h
* Update Makefile
Diffstat (limited to 'source/Core/BSP/Pinecil')
-rw-r--r-- | source/Core/BSP/Pinecil/flash.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/source/Core/BSP/Pinecil/flash.c b/source/Core/BSP/Pinecil/flash.c index 8c0ce3f5..a6daa859 100644 --- a/source/Core/BSP/Pinecil/flash.c +++ b/source/Core/BSP/Pinecil/flash.c @@ -10,8 +10,6 @@ #include "gd32vf103_libopt.h"
#include "string.h"
#define FMC_PAGE_SIZE ((uint16_t)0x400U)
-// static uint16_t settings_page[FMC_PAGE_SIZE] __attribute__ ((section (".settings_page")));
-// Linker script doesnt want to play, so for now its hard coded
#define SETTINGS_START_PAGE (0x08000000 + (127 * 1024))
uint8_t flash_save_buffer(const uint8_t *buffer, const uint16_t length) {
|