avr: started working on new SPI-like COM protocol.

use a clock and a data line to introduce synchronisation into the
protocol to be able to work with the wide range of mcu speeds (no need for
exact timing, no need for exact calibration).
This commit is contained in:
Martin Preuss
2025-07-19 09:42:02 +02:00
parent 535a695c50
commit bdd710fc5c
7 changed files with 1675 additions and 0 deletions

View File

@@ -96,6 +96,21 @@
#endif
#ifdef MODULES_COM2W
.include "modules/com2w/defs.asm"
.include "modules/com2w/com2w.asm"
#endif
#ifdef MODULES_COM2W1
.include "modules/com2w/defs.asm"
.include "modules/com2w/common.asm"
.include "modules/com2w/com2w1.asm"
#endif
#ifdef MODULES_CLOCK
.include "modules/clock/main.asm"
#endif