├── README.md ├── example ├── JLinkSettings.ini ├── RTE │ ├── Device │ │ └── nRF52832_xxAA │ │ │ ├── arm_startup_nrf52.s │ │ │ └── system_nrf52.c │ └── RTE_Components.h ├── flash_patch.c ├── flash_patch.h ├── fpb_example.uvprojx └── main.c └── lib ├── fpb_lib.c └── fpb_lib.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-flash-patch/HEAD/README.md -------------------------------------------------------------------------------- /example/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-flash-patch/HEAD/example/JLinkSettings.ini -------------------------------------------------------------------------------- /example/RTE/Device/nRF52832_xxAA/arm_startup_nrf52.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-flash-patch/HEAD/example/RTE/Device/nRF52832_xxAA/arm_startup_nrf52.s -------------------------------------------------------------------------------- /example/RTE/Device/nRF52832_xxAA/system_nrf52.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-flash-patch/HEAD/example/RTE/Device/nRF52832_xxAA/system_nrf52.c -------------------------------------------------------------------------------- /example/RTE/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-flash-patch/HEAD/example/RTE/RTE_Components.h -------------------------------------------------------------------------------- /example/flash_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-flash-patch/HEAD/example/flash_patch.c -------------------------------------------------------------------------------- /example/flash_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-flash-patch/HEAD/example/flash_patch.h -------------------------------------------------------------------------------- /example/fpb_example.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-flash-patch/HEAD/example/fpb_example.uvprojx -------------------------------------------------------------------------------- /example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-flash-patch/HEAD/example/main.c -------------------------------------------------------------------------------- /lib/fpb_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-flash-patch/HEAD/lib/fpb_lib.c -------------------------------------------------------------------------------- /lib/fpb_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF52-flash-patch/HEAD/lib/fpb_lib.h --------------------------------------------------------------------------------