14 lines
176 B
C
14 lines
176 B
C
|
#include "stm32f10x.h" // Device header
|
||
|
#include "Delay.h"
|
||
|
#include "Key.h"
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
Gpio_Init();
|
||
|
PWM_Init( 100-1,720-1,70);
|
||
|
while (1)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|