Skip to content

Commit

Permalink
fixed ram allocation issue, fw v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nplan committed Oct 31, 2024
1 parent 180b6fb commit 5870e72
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion firmware/boards/picoquake.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
],
"name": "PicoQuake",
"upload": {
"maximum_ram_size": 270336,
"maximum_ram_size": 262144,
"maximum_size": 2097152,
"require_upload_port": true,
"native_usb": true,
Expand Down
4 changes: 3 additions & 1 deletion firmware/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
; https://docs.platformio.org/page/projectconf.html

[env]
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
platform = https://github.com/maxgerhardt/platform-raspberrypi.git#a606be6
platform_packages =
framework-arduinopico@https://github.com/earlephilhower/arduino-pico.git#4.2.0
framework = arduino
board_build.core = earlephilhower
board_build.filesystem_size = 0.5m
Expand Down
2 changes: 1 addition & 1 deletion firmware/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ typedef struct ImuSendStruct {
//


static constexpr char FIRMWARE_VERSION[] = "1.0.0";
static constexpr char FIRMWARE_VERSION[] = "1.0.1";

// LED on when SPI transfer ongoing or LED on when state sampling
// #define LED_ON_SPI_TRANSFER_DEBUG
Expand Down

0 comments on commit 5870e72

Please sign in to comment.