basic button handler routines added, hard buttons tested

touch sensors were also preliminary tested but not all have been analyzed yet.
This commit is contained in:
true
2026-05-08 20:07:06 -07:00
parent 180aa589ee
commit fe169b64f6
5 changed files with 175 additions and 16 deletions

View File

@@ -23,6 +23,12 @@ SECTIONS
_einit = .;
} >FLASH AT>FLASH
.ramfunclalign :
{
. = ALIGN(4);
PROVIDE(_ramfunc_lma = .);
} >FLASH AT>FLASH
.vector :
{
*(.vector);
@@ -132,6 +138,9 @@ SECTIONS
*(.srodata.cst2)
*(.srodata .srodata.*)
. = ALIGN(4);
*(.ramfunc)
*(.ramfunc*)
. = ALIGN(4);
PROVIDE( _edata = .);
} >RAM AT>FLASH