Timers are now 64-bit.

This commit is contained in:
OBattler
2017-10-09 01:48:36 +02:00
parent 08bf9109d7
commit 02bbfb26eb
67 changed files with 508 additions and 499 deletions

View File

@@ -56,7 +56,7 @@ typedef struct _serial_ {
uint8_t fifo[256];
int fifo_read, fifo_write;
int receive_delay;
int64_t receive_delay;
void *bh; /* BottomHalf handler */
} SERIAL;
@@ -99,7 +99,7 @@ typedef struct
uint8_t fifo[256];
int fifo_read, fifo_write;
int recieve_delay;
int64_t recieve_delay;
} SERIAL;
void serial_write_fifo(SERIAL *serial, uint8_t dat);