initial WIP

lots of code copied over, things filled in to hopefully get the LED matrix lighting up. untested.
This commit is contained in:
true
2026-05-08 11:54:12 -07:00
commit d95af918fa
77 changed files with 24395 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
/*
*
*/
#ifndef __APP_COMMS_SPI_MASTER_H
#define __APP_COMMS_SPI_MASTER_H
#include "ch32x035_conf.h"
void spim_init();
void spim_write_reg8(uint8_t reg, const uint8_t *data, uint16_t len);
void spim_read_reg8(uint8_t reg, uint8_t *data, uint16_t len);
#endif /* __APP_COMMS_SPI_MASTER_H */