#include "pwmclass.h" #include "GsmDecoder.h" #include "norflash.h" #include "oneway.h" #include "gpio.h" /////////////////////////////////////////////////////////// /* GSM kecátko funguje i na tomto menším procesoru. * Jen pak nusí být data v externí flash (připojené) přes * SPI. Číst je je možné i v přerušení DMA, trvá to krátce. * */ /////////////////////////////////////////////////////////// static PwmClass pwm; static GpioClass pwr (GPIOB, 8); static GsmDecoder decoder (pwr); int main () { pwr << true; pwm.attach (decoder); for (;;) { } return 0; }