File tree Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 11# Change log
22
3- ## 0.9.15 on 2022/06/xx
3+ ## 0.9.15 on 2022/07/19
44
55### Joystick🕹
66- See [ wiki/VIA and Remap] ( https://github.com/picoruby/prk_firmware/wiki/Joystick )
77
88### Improvements
9+ - Changeable default layer name. See [ wiki/Layers-and-mode-key#Changing-default-layer] ( https://github.com/picoruby/prk_firmware/wiki/Layers-and-mode-key#changing-default-layer )
910- Suppress RGB random flicker on startup
1011
12+ ### Bug fix
13+ - A bug that some alias keycodes didn't work [ issue/106] ( https://github.com/picoruby/prk_firmware/issues/106 )
14+ - Some fixes of VIA
15+
1116## 0.9.14 on 2022/05/21
1217
1318### VIA! VIA!! VIA!!! 🙌
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ add_definitions(
1111 -DMRBC_USE_HAL_RP2040
1212 -DMRBC_REQUIRE_32BIT_ALIGNMENT
1313 -DMAX_REGS_SIZE=256
14- -DMAX_SYMBOLS_COUNT=700
1514 -DMAX_VM_COUNT=20
1615 -DMRBC_CONVERT_CRLF
1716 -DPICORBC_PTR_SIZE=4
Original file line number Diff line number Diff line change 11require "fileutils"
22
3+ MAX_SYMBOLS_COUNT = 1000
4+
35task :default => :all
46
57desc "build PRK Firmware in build directory"
@@ -13,13 +15,13 @@ task :debug_all => %i(check_setup test_all debug_make_without_test)
1315# Build without tests
1416task :make_without_test do
1517 FileUtils . cd "build" do
16- sh "cmake .. && make"
18+ sh "CFLAGS=-DMAX_SYMBOLS_COUNT= #{ MAX_SYMBOLS_COUNT } cmake .. && make"
1719 end
1820end
1921
2022task :debug_make_without_test do
2123 FileUtils . cd "build" do
22- sh "cmake -DCMAKE_BUILD_TYPE=Debug .. && make"
24+ sh "CFLAGS=-DMAX_SYMBOLS_COUNT= #{ MAX_SYMBOLS_COUNT } cmake -DCMAKE_BUILD_TYPE=Debug .. && make"
2325 elf_file = Dir . glob ( "prk_firmware-*.elf" ) . sort_by { |fn | File . mtime ( fn ) } . last
2426 sh "gdb-multiarch #{ elf_file } "
2527 end
@@ -90,7 +92,7 @@ task :setup do
9092 sh "bundle exec steep -h || bundle install"
9193 end
9294 FileUtils . cd "lib/picoruby" do
93- sh "rake all"
95+ sh "rake all MAX_SYMBOLS_COUNT= #{ MAX_SYMBOLS_COUNT } "
9496 end
9597 FileUtils . cd "lib/picoruby/build/repos/host/mruby-mrubyc/repos/mrubyc/src/hal_user_reserved" do
9698 FileUtils . ln_sf "../../../../../../../../../hal/hal.c" , "hal.c"
You can’t perform that action at this time.
0 commit comments