├── CMakeLists.txt ├── ProjectFiles ├── CMakeLists.txt ├── main.c ├── pico_flash.c └── pico_flash.h ├── README.md └── pico_sdk_import.cmake /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NegasonicX/Raspberry-PICO2040-Flash-Storage/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ProjectFiles/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NegasonicX/Raspberry-PICO2040-Flash-Storage/HEAD/ProjectFiles/CMakeLists.txt -------------------------------------------------------------------------------- /ProjectFiles/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NegasonicX/Raspberry-PICO2040-Flash-Storage/HEAD/ProjectFiles/main.c -------------------------------------------------------------------------------- /ProjectFiles/pico_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NegasonicX/Raspberry-PICO2040-Flash-Storage/HEAD/ProjectFiles/pico_flash.c -------------------------------------------------------------------------------- /ProjectFiles/pico_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NegasonicX/Raspberry-PICO2040-Flash-Storage/HEAD/ProjectFiles/pico_flash.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NegasonicX/Raspberry-PICO2040-Flash-Storage/HEAD/README.md -------------------------------------------------------------------------------- /pico_sdk_import.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NegasonicX/Raspberry-PICO2040-Flash-Storage/HEAD/pico_sdk_import.cmake --------------------------------------------------------------------------------