-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial commit * Initial commit: Keyboard and SSD1306 driver and some basic project structure. * Introduces StreamDevice and DatagramDevice for the framework as a reference type * Introduces DigitalIO as a base driver and ports KeyboardMatrix to it. * Starts implementing the ST77xx driver * Adjusts to ZEG coding guidelines * Updates README.md * Adds some minor fixes. * Update to 0.13.0 * Updates DigitalIO to make .read() may error (think: port expanders!), fixes some details in rotary-encoder and debounced-button * Adds a framebuffer type for the SSD1306 * Fixes some bugs in the SSD1306 driver, enables quicker image transfer. * Removes pre-merge cruft * Adds missing build.zig * Applies style guides more thoroughly * Deletes empty driver files * Refactors Keyboard_Matrix * Refactors Debounced_Button * Refactors Rotary_Encoder * Renames ./driver to ./drivers, adds the drivers package to '@import(microzig).drivers' so it's exposed in the framework by default. * Adds README to ./drivers * Adds missing build.zig.zon to driver framework. * Renames project to work around bug in boxzer * Ports SSD1306 and Datagram_Device to use/provide writev/readv functions * Prepares SSD1306 to be used with 4-wire SPI * Updates Stream_Device to provide writev/readv * Adds a unit test for the Datagram_Device.Test_Device * Implements Stream_Device.Test_Device with a unit test to ensure proper function. * Enables SSD1306 with 4-wire SPI mode. * Starts to implement device drivers for RP2 HAL * Adds rp2.hal.GPIO_Device as a Digital_IO driver * Introduces the SSD1306 dynamic mode support, which can serve all other modes at runtime * Drops accidential file clone * Attempts to fix boxzer CI failure --------- Co-authored-by: Felix (xq) Queißner <[email protected]>
- Loading branch information
Showing
23 changed files
with
3,338 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
zig-out/ | ||
zig-cache/ | ||
.zig-cache/ | ||
microzig-deploy/ | ||
__pycache__/ | ||
.direnv/ | ||
.DS_Store | ||
.gdbinit | ||
.lldbinit | ||
.direnv/ | ||
__pycache__/ | ||
.venv | ||
.zig-cache/ | ||
boxzer-out | ||
microzig-deploy/ | ||
zig-cache/ | ||
zig-out/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# microzig-driver-framework | ||
|
||
A collection of device drivers for the use with MicroZig. | ||
|
||
## Drivers | ||
|
||
> Drivers with a checkmark are already implemented, drivers without are missing | ||
- Input | ||
- [x] Keyboard Matrix | ||
- [x] Rotary Encoder | ||
- [x] Debounced Button | ||
- Touch | ||
- [ ] [XPT2046](https://github.com/ZigEmbeddedGroup/microzig/issues/247) | ||
- Display | ||
- [x] SSD1306 (I²C works, [3-wire SPI](https://github.com/ZigEmbeddedGroup/microzig/issues/251) and [4-wire SPI](https://github.com/ZigEmbeddedGroup/microzig/issues/252) are missing) | ||
- [ ] [ST7735](https://github.com/ZigEmbeddedGroup/microzig/issues/250) (WIP) | ||
- [ ] [ILI9488](https://github.com/ZigEmbeddedGroup/microzig/issues/249) | ||
- Wireless | ||
- [ ] [SX1276, SX1278](https://github.com/ZigEmbeddedGroup/microzig/issues/248) |
Oops, something went wrong.