Skip to content

Commit

Permalink
Merge pull request #4 from YuzukiHD/sync_upstream
Browse files Browse the repository at this point in the history
Sync upstream
  • Loading branch information
YuzukiTsuru authored Dec 16, 2023
2 parents 64ceb45 + 2e2a820 commit a1314b1
Show file tree
Hide file tree
Showing 8 changed files with 2,600 additions and 4 deletions.
2 changes: 1 addition & 1 deletion kernel/SyterKit
Submodule SyterKit updated 50 files
+1 −1 .github/workflows/CMake.yml
+9 −4 CMakeLists.txt
+7 −1 app/CMakeLists.txt
+6 −0 app/i2c_oled/CMakeLists.txt
+40 −0 app/i2c_oled/main.c
+272 −0 app/i2c_oled/oled.c
+74 −0 app/i2c_oled/oled.h
+392 −0 app/i2c_oled/oledfont.h
+5 −0 app/i2c_test/CMakeLists.txt
+49 −0 app/i2c_test/main.c
+2 −14 app/load_e907/main.c
+6 −0 app/spi_lcd/CMakeLists.txt
+261 −0 app/spi_lcd/lcd.c
+57 −0 app/spi_lcd/lcd.h
+397 −0 app/spi_lcd/lcd_font.h
+21 −0 app/spi_lcd/lcd_init.h
+248 −0 app/spi_lcd/main.c
+231 −34 app/syter_boot/main.c
+2 −0 app/syter_boot_spi/main.c
+0 −0 docs/.nojekyll
+6 −0 docs/README.md
+2 −0 docs/_navbar.md
+38 −0 docs/index.html
+17 −0 drivers/sys-clk.c
+4 −7 drivers/sys-dma.c
+477 −0 drivers/sys-i2c.c
+63 −0 drivers/sys-rtc.c
+406 −0 drivers/sys-spi-nand.c
+9 −623 drivers/sys-spi.c
+2 −0 include/common.h
+4 −2 include/drivers/sys-clk.h
+5 −2 include/drivers/sys-gpio.h
+100 −0 include/drivers/sys-i2c.h
+29 −0 include/drivers/sys-rtc.h
+56 −0 include/drivers/sys-spi-nand.h
+5 −25 include/drivers/sys-spi.h
+2 −2 include/drivers/sys-uart.h
+1 −1 include/lib/fatfs/ff.h
+2 −2 include/lib/fatfs/media.h
+1 −1 include/log.h
+2 −1 include/reg/reg-dma.h
+41 −0 include/sstdlib.h
+0 −6 include/string.h
+4 −0 include/uart.h
+32 −0 scripts/genimage_openwrt.cfg
+18 −5 src/cli/commands.c
+14 −1 src/common.c
+217 −0 src/sstdlib.c
+0 −80 src/string/string.c
+10 −0 src/uart.c
Loading

0 comments on commit a1314b1

Please sign in to comment.