Skip to content

Commit

Permalink
Synced with Circle Step 44.4.1
Browse files Browse the repository at this point in the history
circle-stdlib v15.11 was meant to include Circle step 44.4.1,
but the commit was forgotten. This is now the actial update
to Circle step 44.4.1.
  • Loading branch information
smuehlst committed Mar 13, 2022
1 parent f6ede52 commit 65874d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/circle
Submodule circle updated 85 files
+0 −3 .gitmodules
+25 −0 CHANGELOG.md
+1 −0 CREDITS
+18 −19 README.md
+3 −1 Rules.mk
+2 −2 addon/README
+1 −1 addon/WS28XX/Makefile
+2 −2 addon/WS28XX/sample/multichan/Makefile
+16 −0 addon/WS28XX/sample/multichan/README
+132 −0 addon/WS28XX/sample/multichan/kernel.cpp
+67 −0 addon/WS28XX/sample/multichan/kernel.h
+0 −0 addon/WS28XX/sample/multichan/main.cpp
+14 −0 addon/WS28XX/sample/simple/Makefile
+0 −0 addon/WS28XX/sample/simple/README
+0 −0 addon/WS28XX/sample/simple/kernel.cpp
+0 −0 addon/WS28XX/sample/simple/kernel.h
+47 −0 addon/WS28XX/sample/simple/main.cpp
+92 −0 addon/WS28XX/ws2812oversmi.cpp
+90 −0 addon/WS28XX/ws2812oversmi.h
+46 −7 addon/display/hd44780device.cpp
+11 −3 addon/display/hd44780device.h
+1 −1 addon/fatfs/LICENSE.txt
+699 −575 addon/fatfs/ff.c
+36 −40 addon/fatfs/ff.h
+29 −26 addon/fatfs/ffconf.h
+2 −2 addon/fatfs/sample/README
+2 −17 addon/lvgl/Makefile
+525 −593 addon/lvgl/lv_conf.h
+0 −40 addon/lvgl/lv_ex_conf.h
+0 −1 addon/lvgl/lv_examples
+1 −1 addon/lvgl/lvgl
+18 −23 addon/lvgl/lvgl.cpp
+3 −4 addon/lvgl/lvgl.h
+0 −1 addon/lvgl/sample/Makefile
+7 −15 addon/lvgl/sample/README
+2 −2 addon/lvgl/sample/kernel.cpp
+2 −2 addon/pico/swdloader.h
+1 −1 addon/sensor/Makefile
+315 −0 addon/sensor/ky040.cpp
+153 −0 addon/sensor/ky040.h
+14 −0 addon/sensor/sample/ky040/Makefile
+12 −0 addon/sensor/sample/ky040/README
+190 −0 addon/sensor/sample/ky040/kernel.cpp
+74 −0 addon/sensor/sample/ky040/kernel.h
+47 −0 addon/sensor/sample/ky040/main.cpp
+2 −2 boot/Makefile
+1 −0 doc/classes.txt
+6 −0 doc/cmdline.txt
+4 −1 include/circle/bcm2835.h
+8 −1 include/circle/cputhrottle.h
+54 −12 include/circle/dmachannel.h
+2 −1 include/circle/dmacommon.h
+26 −5 include/circle/hdmisoundbasedevice.h
+3 −1 include/circle/koptions.h
+113 −0 include/circle/smimaster.h
+7 −4 include/circle/spimaster.h
+4 −1 include/circle/spimasterdma.h
+1 −1 include/circle/util.h
+10 −3 include/circle/version.h
+2 −2 lib/Makefile
+44 −2 lib/cputhrottle.cpp
+99 −21 lib/hdmisoundbasedevice.cpp
+16 −1 lib/koptions.cpp
+2 −2 lib/logger.cpp
+3 −1 lib/memory.cpp
+3 −1 lib/multicore.cpp
+1 −1 lib/sched/scheduler.cpp
+317 −0 lib/smimaster.cpp
+3 −3 lib/spimaster.cpp
+4 −4 lib/spimasterdma.cpp
+23 −1 lib/sysinit.cpp
+19 −3 lib/usb/usbdevicefactory.cpp
+1 −33 lib/util.cpp
+65 −0 lib/util_fast.S
+9 −2 sample/26-cpustress/README
+14 −1 sample/42-i2sinput/Makefile
+27 −0 sample/42-i2sinput/README
+8 −1 sample/42-i2sinput/config.h
+38 −1 sample/42-i2sinput/kernel.cpp
+12 −0 sample/42-i2sinput/kernel.h
+112 −0 sample/42-i2sinput/queue.cpp
+50 −0 sample/42-i2sinput/queue.h
+170 −0 sample/42-i2sinput/soundrecorder.cpp
+53 −0 sample/42-i2sinput/soundrecorder.h
+1 −1 sample/README

0 comments on commit 65874d6

Please sign in to comment.