Parcourir la source

Start systick at boot time

DricomDragon il y a 5 ans
Parent
commit
55f34ce548
3 fichiers modifiés avec 4 ajouts et 6 suppressions
  1. 0 3
      prog/sources/setup-loop.cpp
  2. 3 1
      prog/sources/time.cpp
  3. 1 2
      prog/sources/time.h

+ 0 - 3
prog/sources/setup-loop.cpp

@@ -8,9 +8,6 @@ void setup (USER_MODE) {
 
 	// Configure PTD7 as digital output port (output level is low --> led is off)
 	GPIOD_PDDR |= (1 << 7) ;
-
-	// Init clock
-	startSystick(MODE);
 }
 
 void loop (USER_MODE) {

+ 3 - 1
prog/sources/time.cpp

@@ -1,11 +1,13 @@
 #include "all-headers.h"
 
-void startSystick (USER_MODE) {
+static void startSystick (BOOT_MODE) {
 	SYST_RVR = CPU_MHZ * 1000 - 1 ; // Underflow every ms
 	SYST_CVR = 0 ;
 	SYST_CSR = SYST_CSR_CLKSOURCE | SYST_CSR_ENABLE ;
 }
 
+MACRO_BOOT_ROUTINE (startSystick);
+
 void busyWaitDuring (USER_MODE_ const uint32_t inDelayMS) {
 	const uint32_t COUNTFLAG_MASK = 1 << 16 ;
 	for (uint32_t i = 0; i < inDelayMS; i++) {

+ 1 - 2
prog/sources/time.h

@@ -2,6 +2,5 @@
 
 #include <stdint.h>
 
-void startSystick (USER_MODE);
-
 void busyWaitDuring (USER_MODE_ const uint32_t inDelayMS);
+