2018-03-07 16:06:25 +00:00
|
|
|
#ifndef __BLUEPILL_H__
|
|
|
|
#define __BLUEPILL_H__
|
|
|
|
|
|
|
|
#include "bluepill/gpio.h"
|
|
|
|
#include "bluepill/rcc.h"
|
|
|
|
|
2018-03-07 23:01:27 +00:00
|
|
|
static inline void
|
|
|
|
delay(unsigned long ms)
|
|
|
|
{
|
|
|
|
for (unsigned long i = 0; i < ms; ++i) __asm__("nop");
|
|
|
|
}
|
|
|
|
|
2018-03-07 16:06:25 +00:00
|
|
|
#endif // __BLUEPILL_H__
|