mirror of
https://github.com/OpenEPaperLink/OpenEPaperLink.git
synced 2026-03-21 02:04:36 +01:00
97 lines
2.1 KiB
C
97 lines
2.1 KiB
C
#include "uart.h"
|
|
|
|
#include "cpu.h"
|
|
#include "stdbool.h"
|
|
#include "string.h"
|
|
|
|
void uartInit(void) {
|
|
// clock it up
|
|
CLKEN |= 0x20;
|
|
|
|
// configure
|
|
UARTBRGH = 0x00; // at the speeds we want, this reg is always 0
|
|
|
|
//UARTBRGL = 0x8A; // 115200
|
|
UARTBRGL = 69; // nice. 230400 baud
|
|
// UARTBRGL = 0x1F; // 500kbaud, unreliable RX here...
|
|
// UARTBRGL = 39; //400kbaud? also unreliable...
|
|
// UARTBRGL = 49; // 320kbaud? nope. bummer.
|
|
UARTSTA = 0x12; // also set the "empty" bit else we wait forever for it to go up
|
|
IEN_UART0 = 1;
|
|
}
|
|
|
|
extern uint8_t __xdata blockbuffer[];
|
|
extern bool __xdata blockRequestInProgress;
|
|
|
|
volatile uint8_t txtail = 0;
|
|
volatile uint8_t txhead = 0;
|
|
uint8_t __xdata txbuf[256] = {0};
|
|
|
|
volatile uint8_t __idata rxtail = 0;
|
|
volatile uint8_t __idata rxhead = 0;
|
|
uint8_t __xdata rxbuf[256] = {0};
|
|
|
|
void uartTx(uint8_t val) {
|
|
__critical {
|
|
txbuf[txhead] = val;
|
|
if (txhead == txtail) {
|
|
UARTBUF = val;
|
|
}
|
|
txhead++;
|
|
}
|
|
}
|
|
|
|
uint8_t uartRx() {
|
|
if (rxhead == rxtail) {
|
|
return 0;
|
|
} else {
|
|
uint8_t ret = rxbuf[rxtail];
|
|
rxtail++;
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
uint8_t uartBytesAvail() {
|
|
return rxhead - rxtail;
|
|
}
|
|
|
|
|
|
|
|
uint8_t* __idata blockp;
|
|
uint8_t __idata cmd[3];
|
|
bool __idata bypass = false;
|
|
|
|
void checkcommand(uint8_t rx) {
|
|
for (uint8_t c = 0; c < 2; c++) {
|
|
cmd[c] = cmd[c + 1];
|
|
}
|
|
cmd[2] = rx;
|
|
if (strncmp(cmd, ">D>", 3) == 0) {
|
|
blockp = blockbuffer;
|
|
bypass = true;
|
|
}
|
|
}
|
|
|
|
void UART_IRQ1(void) __interrupt(0) {
|
|
if (UARTSTA & 1) { // RXC
|
|
UARTSTA &= 0xfe;
|
|
if (bypass) {
|
|
*blockp++ = UARTBUF;
|
|
if (blockp == (blockbuffer+4100)) {
|
|
bypass = false;
|
|
blockRequestInProgress = false;
|
|
}
|
|
} else {
|
|
rxbuf[rxhead] = UARTBUF;
|
|
rxhead++;
|
|
checkcommand(UARTBUF);
|
|
}
|
|
}
|
|
if (UARTSTA & 2) { // TXC
|
|
UARTSTA &= 0xfd;
|
|
txtail++;
|
|
if (txhead != txtail) {
|
|
UARTBUF = txbuf[txtail];
|
|
}
|
|
}
|
|
} |