Skip to content

Commit

Permalink
circle: Update submodule to Step44.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rsta2 committed Dec 2, 2021
1 parent 7030aba commit e3cc678
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion circle
Submodule circle updated 87 files
+26 −0 CHANGELOG.md
+2 −0 CREDITS
+21 −17 README.md
+1 −0 addon/README
+1 −1 addon/display/Makefile
+2 −2 addon/display/sample/hd44780/Makefile
+0 −0 addon/display/sample/hd44780/README
+0 −0 addon/display/sample/hd44780/kernel.cpp
+0 −0 addon/display/sample/hd44780/kernel.h
+0 −0 addon/display/sample/hd44780/main.cpp
+14 −0 addon/display/sample/st7789/Makefile
+29 −0 addon/display/sample/st7789/README
+153 −0 addon/display/sample/st7789/kernel.cpp
+69 −0 addon/display/sample/st7789/kernel.h
+0 −0 addon/display/sample/st7789/main.cpp
+346 −0 addon/display/st7789display.cpp
+126 −0 addon/display/st7789display.h
+11 −2 addon/linux/kthread.cpp
+1 −1 addon/linux/pthread.cpp
+16 −0 addon/pico/Makefile
+24 −0 addon/pico/sample/Makefile
+27 −0 addon/pico/sample/README
+ addon/pico/sample/dummy_flash.uf2
+ addon/pico/sample/firmware.bin
+104 −0 addon/pico/sample/kernel.cpp
+67 −0 addon/pico/sample/kernel.h
+47 −0 addon/pico/sample/main.cpp
+530 −0 addon/pico/swdloader.cpp
+104 −0 addon/pico/swdloader.h
+32 −5 addon/sensor/mcp300x.cpp
+12 −2 addon/sensor/mcp300x.h
+5 −2 addon/sensor/sample/mcp300x/kernel.cpp
+8 −1 addon/wlan/bcm4343.cpp
+7 −1 addon/wlan/bcm4343.h
+43 −0 addon/wlan/ether4330.c
+3 −0 addon/wlan/firmware/Makefile
+2 −2 addon/wlan/makeall
+3 −2 addon/wlan/p9proc.cpp
+21 −0 addon/wlan/sample/hello_ap/Makefile
+47 −0 addon/wlan/sample/hello_ap/README
+21 −0 addon/wlan/sample/hello_ap/client/Makefile
+191 −0 addon/wlan/sample/hello_ap/client/kernel.cpp
+76 −0 addon/wlan/sample/hello_ap/client/kernel.h
+47 −0 addon/wlan/sample/hello_ap/client/main.cpp
+146 −0 addon/wlan/sample/hello_ap/echoserver.cpp
+54 −0 addon/wlan/sample/hello_ap/echoserver.h
+152 −0 addon/wlan/sample/hello_ap/kernel.cpp
+76 −0 addon/wlan/sample/hello_ap/kernel.h
+47 −0 addon/wlan/sample/hello_ap/main.cpp
+1 −1 addon/wlan/sample/hello_wlan/Makefile
+6 −0 addon/wlan/sample/hello_wlan/README
+0 −0 addon/wlan/sample/hello_wlan/kernel.cpp
+0 −0 addon/wlan/sample/hello_wlan/kernel.h
+47 −0 addon/wlan/sample/hello_wlan/main.cpp
+0 −0 addon/wlan/sample/hello_wlan/wpa_supplicant.conf
+2 −2 boot/Makefile
+3 −0 boot/config64.txt
+4 −0 doc/cmdline.txt
+5 −4 doc/debug.txt
+16 −0 doc/issues.txt
+2 −0 include/circle/koptions.h
+1 −0 include/circle/machineinfo.h
+9 −0 include/circle/sched/scheduler.h
+17 −1 include/circle/sched/task.h
+7 −3 include/circle/sysconfig.h
+6 −0 include/circle/timer.h
+2 −2 include/circle/version.h
+21 −8 lib/i2ssoundbasedevice.cpp
+11 −0 lib/koptions.cpp
+9 −3 lib/machineinfo.cpp
+3 −1 lib/net/dhcpclient.cpp
+12 −0 lib/net/httpdaemon.cpp
+3 −1 lib/net/mqttclient.cpp
+2 −1 lib/net/nettask.cpp
+3 −1 lib/net/ntpdaemon.cpp
+2 −1 lib/net/phytask.cpp
+3 −1 lib/net/syslogdaemon.cpp
+1 −2 lib/net/tcpconnection.cpp
+2 −1 lib/net/tftpdaemon.cpp
+60 −0 lib/sched/scheduler.cpp
+29 −2 lib/sched/task.cpp
+0 −2 lib/timer.cpp
+12 −0 lib/usb/usbdevicefactory.cpp
+3 −2 lib/usb/usbendpoint.cpp
+6 −1 lib/usb/usbhostcontroller.cpp
+1 −0 lib/usb/xhciendpoint.cpp
+4 −9 sample/02-screenpixel/kernel.cpp

0 comments on commit e3cc678

Please sign in to comment.