mirror of
https://github.com/rfivet/stm32bringup.git
synced 2024-12-19 07:16:22 -05:00
13 lines
419 B
C
13 lines
419 B
C
|
/* system.h -- system services */
|
||
|
/* Copyright (c) 2020 Renaud Fivet */
|
||
|
|
||
|
extern volatile unsigned uptime ; /* seconds elapsed since boot */
|
||
|
|
||
|
int init( void) ; /* System initialization, called once at startup */
|
||
|
|
||
|
void kputc( unsigned char c) ; /* character output */
|
||
|
int kputs( const char s[]) ; /* string output */
|
||
|
void yield( void) ; /* give way */
|
||
|
|
||
|
/* end of system.h */
|