Add music

This commit is contained in:
Michal Moskal
2017-07-07 11:44:34 +01:00
parent 43b167957b
commit 97b6c7dc4b
13 changed files with 166 additions and 5 deletions

View File

@ -7,6 +7,7 @@
namespace pxt {
void raiseEvent(int id, int event);
int allocateNotifyEvent();
void sleep_core_us(uint64_t us);
class Button;
@ -15,4 +16,8 @@ typedef Button *Button_;
extern "C" void target_init();
}
#define DEVICE_EVT_ANY 0
#define DEVICE_ID_NOTIFY 10000
#define DEVICE_ID_NOTIFY_ONE 10001
#endif