chore: wifi struct, systick

This commit is contained in:
2024-12-10 02:25:18 +06:00
parent c595663b78
commit f48c749e1b
5 changed files with 105 additions and 102 deletions

12
include/systick.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef SYSTICK_H
#define SYSTICK_H
#include <stdint.h>
#define millis() (systick_millis)
extern volatile uint32_t systick_millis;
void Delay_Ms(uint32_t ms);
#endif