pxt-ev3/libs/core/pxt.h

38 lines
516 B
C
Raw Normal View History

2017-06-29 16:47:26 +02:00
#ifndef __PXT_H
#define __PXT_H
#include "pxtbase.h"
2017-07-05 02:17:26 +02:00
#define ID_BUTTON_BASE 100
namespace pxt {
void raiseEvent(int id, int event);
2017-07-07 12:44:34 +02:00
int allocateNotifyEvent();
2017-07-05 02:17:26 +02:00
void sleep_core_us(uint64_t us);
class Button;
typedef Button *Button_;
2017-07-05 19:35:05 +02:00
extern "C" void target_init();
2017-07-07 19:26:49 +02:00
class MMap : public RefObject {
public:
int length;
int fd;
uint8_t *data;
MMap();
void destroy();
void print();
};
2017-07-05 02:17:26 +02:00
}
2017-07-07 12:44:34 +02:00
#define DEVICE_EVT_ANY 0
#define DEVICE_ID_NOTIFY 10000
#define DEVICE_ID_NOTIFY_ONE 10001
2017-06-29 16:47:26 +02:00
#endif