Simple "Blinky" example for the QP active object framework

Dependencies:   mbed qp

Fork of qp_dpp by Quantum Leaps

Committer:
QL
Date:
Sun Oct 12 18:56:53 2014 +0000
Revision:
7:80bbc7a6c78c
Parent:
4:6189d844a1a2
Simple "Blinky" example for the QP active object framework

Who changed what in which revision?

UserRevisionLine numberNew contents of line
QL 4:6189d844a1a2 1 #ifndef bsp_h
QL 4:6189d844a1a2 2 #define bsp_h
QL 4:6189d844a1a2 3 // System clock tick rate [Hz]
QL 4:6189d844a1a2 4 uint32_t const BSP_TICKS_PER_SEC = static_cast<uint32_t>(50);
QL 4:6189d844a1a2 5
QL 4:6189d844a1a2 6 void BSP_init(void);
QL 7:80bbc7a6c78c 7 void BSP_ledOn(void);
QL 7:80bbc7a6c78c 8 void BSP_ledOff(void);
QL 4:6189d844a1a2 9
QL 4:6189d844a1a2 10 #endif // bsp_h
QL 4:6189d844a1a2 11
QL 4:6189d844a1a2 12