소스 검색

Create missing busy wait function

DricomDragon 5 년 전
부모
커밋
1babe81ea1
2개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      prog/sources/time.cpp
  2. 2 0
      prog/sources/time.h

+ 7 - 0
prog/sources/time.cpp

@@ -8,6 +8,13 @@ static void startSystick (BOOT_MODE) {
 
 MACRO_BOOT_ROUTINE (startSystick);
 
+void busyWaitDuring_initMode (INIT_MODE_ const uint32_t inDelayMS) {
+	const uint32_t COUNTFLAG_MASK = 1 << 16 ;
+	for (uint32_t i=0 ; i<inDelayMS ; i++) {
+		while ((SYST_CSR & COUNTFLAG_MASK) == 0) {} // Busy wait, polling COUNTFLAG
+	}
+}
+
 void busyWaitDuring (USER_MODE_ const uint32_t inDelayMS) {
 	const uint32_t COUNTFLAG_MASK = 1 << 16 ;
 	for (uint32_t i = 0; i < inDelayMS; i++) {

+ 2 - 0
prog/sources/time.h

@@ -2,5 +2,7 @@
 
 #include <stdint.h>
 
+void busyWaitDuring_initMode (INIT_MODE_ const uint32_t inDelayMS);
+
 void busyWaitDuring (USER_MODE_ const uint32_t inDelayMS);