Implement getSerialNumber (based on BT MAC)

This commit is contained in:
Michal Moskal 2017-12-15 11:25:23 +00:00
parent 14f57f54bf
commit 55b6549999
3 changed files with 79 additions and 4 deletions

View File

@ -221,10 +221,6 @@ int current_time_ms() {
return currTime() - startTime; return currTime() - startTime;
} }
int getSerialNumber() {
return 42; // TODO
}
void disposeThread(Thread *t) { void disposeThread(Thread *t) {
if (allThreads == t) { if (allThreads == t) {
allThreads = t->next; allThreads = t->next;

View File

@ -10,6 +10,7 @@
"linux.cpp", "linux.cpp",
"mmap.cpp", "mmap.cpp",
"control.cpp", "control.cpp",
"serialnumber.cpp",
"buttons.ts", "buttons.ts",
"png.cpp", "png.cpp",
"screen.cpp", "screen.cpp",

View File

@ -0,0 +1,78 @@
#include "pxt.h"
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <unistd.h>
#define BTPROTO_HCI 1
#define HCIGETDEVLIST _IOR('H', 210, int)
#define HCIGETDEVINFO _IOR('H', 211, int)
struct hci_dev_info {
uint16_t dev_id;
char name[8];
uint8_t bdaddr[6];
uint32_t padding[32];
};
struct hci_dev_req {
uint16_t dev_id;
uint32_t dev_opt;
};
struct hci_dev_list_req {
uint16_t dev_num;
hci_dev_req dev_req[2];
};
static uint32_t bt_addr() {
uint32_t res = 0;
int fd = socket(AF_BLUETOOTH, SOCK_RAW, BTPROTO_HCI);
if (fd < 0) {
DMESG("Can't open HCI socket");
return res;
}
hci_dev_list_req dl;
dl.dev_num = 1;
if (ioctl(fd, HCIGETDEVLIST, (void *)&dl) < 0) {
DMESG("Failed to get HCI device list");
goto done;
}
hci_dev_info di;
di.dev_id = dl.dev_req[0].dev_id;
if (ioctl(fd, HCIGETDEVINFO, (void *)&di) < 0) {
DMESG("Failed to get HCI device list");
goto done;
}
memcpy(&res, di.bdaddr, 4);
res *= 0x1000193;
res += di.bdaddr[4];
res *= 0x1000193;
res += di.bdaddr[5];
done:
close(fd);
return res;
}
namespace pxt {
int getSerialNumber() {
static int serial;
if (serial != 0)
return serial;
serial = bt_addr() & 0x7fffffff;
return serial;
}
} // namespace pxt