sc8-nametag/nametag8_V003
true cd0cfa1d40 minor cleanup in V003 code 2024-11-16 13:29:40 -08:00
..
.settings minor cleanup in V003 code 2024-11-16 13:29:40 -08:00
Core initial commit of work in progress code 2024-10-12 21:59:33 -07:00
Debug initial commit of work in progress code 2024-10-12 21:59:33 -07:00
Ld initial commit of work in progress code 2024-10-12 21:59:33 -07:00
Peripheral initial commit of work in progress code 2024-10-12 21:59:33 -07:00
Startup initial commit of work in progress code 2024-10-12 21:59:33 -07:00
user minor cleanup in V003 code 2024-11-16 13:29:40 -08:00
.cproject minor cleanup in V003 code 2024-11-16 13:29:40 -08:00
.project add missing MRS project files 2024-10-20 02:10:55 -07:00
.template add missing MRS project files 2024-10-20 02:10:55 -07:00
README.md implemented reading sub MCU version number 2024-10-28 00:24:16 -07:00
nametag8_V003.launch add README.md 2024-10-27 23:48:04 -07:00
nametag8_V003.wvproj initial commit of work in progress code 2024-10-12 21:59:33 -07:00

README.md

GAT Nametag SC8 CH32V003 Firmware

sub mcu firmware for the GAT Nametag originally shown at Supercon 8.

responsible for doing things the main micro can't due to layout or other reasons, such as user button I/O, accelerometer interrupt, and hardware enable for the RGBLED controller.

the sub MCU is on the bottom board. to use a debugger to debug or program, connect to the SWO pin. with the nametag upright, this pin is the top left pad near the side button.

there is no workable bootloader yet present so a WCH-LinkE is required to update firmware. I hope to have time to work on i2c slave bootloader at or after Supercon 8.

building

This is a MounRiver Studio project. Build in MRS.

bugs, quirks, omissions

  • this really isn't an appropriate MCU for this. it can't wakeup on i2c from a low power / oscillator off state, so no matter what this thing pisses away at least 1mA.

    • for i2c to work at the speeds we're running, 8MHz clock is minimum. ~1-2mA.
    • this MCU was chosen due to it being available and using the same toolchain as the main MCU.
    • if proper sleep mode is implemented then power could be saved, with this MCU being the first to wake up then telling master to wake up. but it doesn't help active mode consumption.
    • this MCU model is a "popular" thing right now, being called the 10 cent MCU even though it's never available for that price. but people love popularity and cheap shit so meh.
  • i2c slave code was mostly lifted from ch32v003fun I think, but adapted for my use

  • things mostly just worked OK on this board.