mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-05-29 19:51:29 -04:00
Move MessageQueue::signal into .cpp file.
This commit is contained in:
parent
c585f3d4ea
commit
ed3ac5249f
2 changed files with 16 additions and 15 deletions
|
@ -20,3 +20,18 @@
|
|||
*/
|
||||
|
||||
#include "message_queue.hpp"
|
||||
|
||||
#include "lpc43xx_cpp.hpp"
|
||||
using namespace lpc43xx;
|
||||
|
||||
#if defined(LPC43XX_M0)
|
||||
void MessageQueue::signal() {
|
||||
creg::m0apptxevent::assert();
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(LPC43XX_M4)
|
||||
void MessageQueue::signal() {
|
||||
creg::m4txevent::assert();
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue