STM32/STM32MP157AAA3/Cortex-M4 7-1/CM4/RemoteProc
2025-03-31 09:55:14 +08:00
..
fw_cortex_m4.sh add unit 7 2025-03-31 09:55:14 +08:00
README add unit 7 2025-03-31 09:55:14 +08:00

This is a new Cortex-M project created from STM32CubeIDE.
Its purpose is only to give the framework.
It does not use any resources, only starting the co-processor:


int main() {
	int i=0;

	for(i=0;i<100;i++);

	while(1);
}



To load it run :
./fw_cortex_m4.sh start


To stop it :
./fw_cortex_m4.sh stop


It can be enriched and debugged from the IDE ;-)
Have fun!