2016-02-21 21:52:00 +00:00
|
|
|
/*
|
|
|
|
The MIT License (MIT)
|
|
|
|
|
|
|
|
Copyright (c) 2016 Fred Sundvik
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
SOFTWARE.
|
|
|
|
*/
|
2016-02-28 19:46:29 +00:00
|
|
|
#include "report.h"
|
|
|
|
#include "host_driver.h"
|
2016-05-15 10:38:59 +00:00
|
|
|
#include "serial_link/system/serial_link.h"
|
2016-02-27 20:28:35 +00:00
|
|
|
#include "hal.h"
|
|
|
|
#include "serial_link/protocol/byte_stuffer.h"
|
|
|
|
#include "serial_link/protocol/transport.h"
|
|
|
|
#include "serial_link/protocol/frame_router.h"
|
2016-02-28 20:52:30 +00:00
|
|
|
#include "matrix.h"
|
2016-02-27 20:28:35 +00:00
|
|
|
#include <stdbool.h>
|
2016-02-28 19:46:29 +00:00
|
|
|
#include "print.h"
|
2016-05-15 09:59:50 +00:00
|
|
|
#include "config.h"
|
2016-02-27 20:28:35 +00:00
|
|
|
|
|
|
|
static event_source_t new_data_event;
|
2016-02-28 19:46:29 +00:00
|
|
|
static bool serial_link_connected;
|
2016-05-15 16:28:15 +00:00
|
|
|
static bool is_master = false;
|
2016-02-28 19:46:29 +00:00
|
|
|
|
|
|
|
static uint8_t keyboard_leds(void);
|
|
|
|
static void send_keyboard(report_keyboard_t *report);
|
|
|
|
static void send_mouse(report_mouse_t *report);
|
|
|
|
static void send_system(uint16_t data);
|
|
|
|
static void send_consumer(uint16_t data);
|
|
|
|
|
|
|
|
host_driver_t serial_driver = {
|
|
|
|
keyboard_leds,
|
|
|
|
send_keyboard,
|
|
|
|
send_mouse,
|
|
|
|
send_system,
|
|
|
|
send_consumer
|
|
|
|
};
|
2016-02-27 20:28:35 +00:00
|
|
|
|
2016-05-15 09:59:50 +00:00
|
|
|
// Define these in your Config.h file
|
2016-03-12 20:37:04 +00:00
|
|
|
#ifndef SERIAL_LINK_BAUD
|
|
|
|
#error "Serial link baud is not set"
|
|
|
|
#endif
|
2016-02-27 20:28:35 +00:00
|
|
|
|
2016-05-15 09:59:50 +00:00
|
|
|
#ifndef SERIAL_LINK_THREAD_PRIORITY
|
|
|
|
#error "Serial link thread priority not set"
|
|
|
|
#endif
|
|
|
|
|
2016-02-27 20:28:35 +00:00
|
|
|
static SerialConfig config = {
|
2016-03-12 20:37:04 +00:00
|
|
|
.sc_speed = SERIAL_LINK_BAUD
|
2016-02-27 20:28:35 +00:00
|
|
|
};
|
|
|
|
|
2016-05-15 08:36:39 +00:00
|
|
|
//#define DEBUG_LINK_ERRORS
|
|
|
|
|
2016-02-28 13:52:03 +00:00
|
|
|
static uint32_t read_from_serial(SerialDriver* driver, uint8_t link) {
|
2016-02-27 20:28:35 +00:00
|
|
|
const uint32_t buffer_size = 16;
|
|
|
|
uint8_t buffer[buffer_size];
|
|
|
|
uint32_t bytes_read = sdAsynchronousRead(driver, buffer, buffer_size);
|
|
|
|
uint8_t* current = buffer;
|
|
|
|
uint8_t* end = current + bytes_read;
|
|
|
|
while(current < end) {
|
2016-02-28 13:52:03 +00:00
|
|
|
byte_stuffer_recv_byte(link, *current);
|
2016-02-27 20:28:35 +00:00
|
|
|
current++;
|
|
|
|
}
|
|
|
|
return bytes_read;
|
|
|
|
}
|
2016-02-21 21:52:00 +00:00
|
|
|
|
2016-05-15 08:36:39 +00:00
|
|
|
static void print_error(char* str, eventflags_t flags, SerialDriver* driver) {
|
|
|
|
#ifdef DEBUG_LINK_ERRORS
|
|
|
|
if (flags & SD_PARITY_ERROR) {
|
|
|
|
print(str);
|
|
|
|
print(" Parity error\n");
|
|
|
|
}
|
|
|
|
if (flags & SD_FRAMING_ERROR) {
|
|
|
|
print(str);
|
|
|
|
print(" Framing error\n");
|
|
|
|
}
|
|
|
|
if (flags & SD_OVERRUN_ERROR) {
|
|
|
|
print(str);
|
|
|
|
uint32_t size = qSpaceI(&(driver->iqueue));
|
|
|
|
xprintf(" Overrun error, queue size %d\n", size);
|
|
|
|
|
|
|
|
}
|
|
|
|
if (flags & SD_NOISE_ERROR) {
|
|
|
|
print(str);
|
|
|
|
print(" Noise error\n");
|
|
|
|
}
|
|
|
|
if (flags & SD_BREAK_DETECTED) {
|
|
|
|
print(str);
|
|
|
|
print(" Break detected\n");
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
(void)str;
|
|
|
|
(void)flags;
|
|
|
|
(void)driver;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-05-15 16:28:15 +00:00
|
|
|
bool is_serial_link_master(void) {
|
|
|
|
return is_master;
|
|
|
|
}
|
|
|
|
|
2016-02-21 21:52:00 +00:00
|
|
|
// TODO: Optimize the stack size, this is probably way too big
|
|
|
|
static THD_WORKING_AREA(serialThreadStack, 1024);
|
|
|
|
static THD_FUNCTION(serialThread, arg) {
|
|
|
|
(void)arg;
|
2016-02-27 20:28:35 +00:00
|
|
|
event_listener_t new_data_listener;
|
|
|
|
event_listener_t sd1_listener;
|
|
|
|
event_listener_t sd2_listener;
|
|
|
|
chEvtRegister(&new_data_event, &new_data_listener, 0);
|
2016-05-15 08:36:39 +00:00
|
|
|
eventflags_t events = CHN_INPUT_AVAILABLE
|
|
|
|
| SD_PARITY_ERROR | SD_FRAMING_ERROR | SD_OVERRUN_ERROR | SD_NOISE_ERROR | SD_BREAK_DETECTED;
|
2016-02-27 20:28:35 +00:00
|
|
|
chEvtRegisterMaskWithFlags(chnGetEventSource(&SD1),
|
|
|
|
&sd1_listener,
|
|
|
|
EVENT_MASK(1),
|
2016-05-15 08:36:39 +00:00
|
|
|
events);
|
2016-02-27 20:28:35 +00:00
|
|
|
chEvtRegisterMaskWithFlags(chnGetEventSource(&SD2),
|
|
|
|
&sd2_listener,
|
|
|
|
EVENT_MASK(2),
|
2016-05-15 08:36:39 +00:00
|
|
|
events);
|
2016-02-27 20:28:35 +00:00
|
|
|
bool need_wait = false;
|
|
|
|
while(true) {
|
2016-05-15 08:36:39 +00:00
|
|
|
eventflags_t flags1 = 0;
|
|
|
|
eventflags_t flags2 = 0;
|
2016-02-27 20:28:35 +00:00
|
|
|
if (need_wait) {
|
2016-05-15 08:36:39 +00:00
|
|
|
eventmask_t mask = chEvtWaitAnyTimeout(ALL_EVENTS, MS2ST(1000));
|
|
|
|
if (mask & EVENT_MASK(1)) {
|
|
|
|
flags1 = chEvtGetAndClearFlags(&sd1_listener);
|
|
|
|
print_error("DOWNLINK", flags1, &SD1);
|
|
|
|
}
|
|
|
|
if (mask & EVENT_MASK(2)) {
|
|
|
|
flags2 = chEvtGetAndClearFlags(&sd2_listener);
|
|
|
|
print_error("UPLINK", flags2, &SD2);
|
|
|
|
}
|
2016-02-27 20:28:35 +00:00
|
|
|
}
|
2016-05-15 08:36:39 +00:00
|
|
|
|
2016-03-13 19:38:51 +00:00
|
|
|
// Always stay as master, even if the USB goes into sleep mode
|
|
|
|
is_master |= usbGetDriverStateI(&USBD1) == USB_ACTIVE;
|
2016-02-27 20:28:35 +00:00
|
|
|
router_set_master(is_master);
|
|
|
|
|
|
|
|
need_wait = true;
|
2016-02-28 13:52:03 +00:00
|
|
|
need_wait &= read_from_serial(&SD2, UP_LINK) == 0;
|
|
|
|
need_wait &= read_from_serial(&SD1, DOWN_LINK) == 0;
|
2016-02-27 20:28:35 +00:00
|
|
|
update_transport();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void send_data(uint8_t link, const uint8_t* data, uint16_t size) {
|
2016-02-28 13:52:03 +00:00
|
|
|
if (link == DOWN_LINK) {
|
2016-02-27 20:28:35 +00:00
|
|
|
sdWrite(&SD1, data, size);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sdWrite(&SD2, data, size);
|
|
|
|
}
|
2016-02-21 21:52:00 +00:00
|
|
|
}
|
|
|
|
|
2016-02-28 19:46:29 +00:00
|
|
|
static systime_t last_update = 0;
|
|
|
|
|
|
|
|
typedef struct {
|
2016-02-28 20:52:30 +00:00
|
|
|
matrix_row_t rows[MATRIX_ROWS];
|
|
|
|
} matrix_object_t;
|
2016-02-28 19:46:29 +00:00
|
|
|
|
2016-02-28 20:52:30 +00:00
|
|
|
static matrix_object_t last_matrix = {};
|
2016-02-28 19:46:29 +00:00
|
|
|
|
2016-02-28 20:52:30 +00:00
|
|
|
SLAVE_TO_MASTER_OBJECT(keyboard_matrix, matrix_object_t);
|
2016-02-28 19:46:29 +00:00
|
|
|
MASTER_TO_ALL_SLAVES_OBJECT(serial_link_connected, bool);
|
|
|
|
|
2016-03-12 17:35:09 +00:00
|
|
|
static remote_object_t* remote_objects[] = {
|
2016-02-28 19:46:29 +00:00
|
|
|
REMOTE_OBJECT(serial_link_connected),
|
2016-02-28 20:52:30 +00:00
|
|
|
REMOTE_OBJECT(keyboard_matrix),
|
2016-02-28 19:46:29 +00:00
|
|
|
};
|
2016-02-21 21:52:00 +00:00
|
|
|
|
|
|
|
void init_serial_link(void) {
|
2016-02-28 19:46:29 +00:00
|
|
|
serial_link_connected = false;
|
|
|
|
init_serial_link_hal();
|
2016-03-12 17:35:09 +00:00
|
|
|
add_remote_objects(remote_objects, sizeof(remote_objects)/sizeof(remote_object_t*));
|
2016-02-27 20:28:35 +00:00
|
|
|
init_byte_stuffer();
|
|
|
|
sdStart(&SD1, &config);
|
|
|
|
sdStart(&SD2, &config);
|
|
|
|
chEvtObjectInit(&new_data_event);
|
2016-02-21 21:52:00 +00:00
|
|
|
(void)chThdCreateStatic(serialThreadStack, sizeof(serialThreadStack),
|
2016-05-15 09:59:50 +00:00
|
|
|
SERIAL_LINK_THREAD_PRIORITY, serialThread, NULL);
|
2016-02-21 21:52:00 +00:00
|
|
|
}
|
|
|
|
|
2016-02-28 21:58:47 +00:00
|
|
|
void matrix_set_remote(matrix_row_t* rows, uint8_t index);
|
|
|
|
|
2016-02-28 19:46:29 +00:00
|
|
|
void serial_link_update(void) {
|
|
|
|
if (read_serial_link_connected()) {
|
|
|
|
serial_link_connected = true;
|
|
|
|
}
|
2016-02-28 20:52:30 +00:00
|
|
|
|
|
|
|
matrix_object_t matrix;
|
|
|
|
bool changed = false;
|
|
|
|
for(uint8_t i=0;i<MATRIX_ROWS;i++) {
|
|
|
|
matrix.rows[i] = matrix_get_row(i);
|
|
|
|
changed |= matrix.rows[i] != last_matrix.rows[i];
|
|
|
|
}
|
2016-03-12 18:08:08 +00:00
|
|
|
|
|
|
|
systime_t current_time = chVTGetSystemTimeX();
|
|
|
|
systime_t delta = current_time - last_update;
|
2017-03-31 19:51:00 +00:00
|
|
|
if (changed || delta > US2ST(5000)) {
|
2016-03-12 18:08:08 +00:00
|
|
|
last_update = current_time;
|
2016-02-28 20:52:30 +00:00
|
|
|
last_matrix = matrix;
|
|
|
|
matrix_object_t* m = begin_write_keyboard_matrix();
|
|
|
|
for(uint8_t i=0;i<MATRIX_ROWS;i++) {
|
|
|
|
m->rows[i] = matrix.rows[i];
|
|
|
|
}
|
|
|
|
end_write_keyboard_matrix();
|
2016-03-12 18:08:08 +00:00
|
|
|
*begin_write_serial_link_connected() = true;
|
|
|
|
end_write_serial_link_connected();
|
2016-02-28 20:52:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
matrix_object_t* m = read_keyboard_matrix(0);
|
|
|
|
if (m) {
|
2016-02-28 21:58:47 +00:00
|
|
|
matrix_set_remote(m->rows, 0);
|
2016-02-28 20:52:30 +00:00
|
|
|
}
|
2016-02-28 19:46:29 +00:00
|
|
|
}
|
|
|
|
|
2016-02-21 21:52:00 +00:00
|
|
|
void signal_data_written(void) {
|
2016-02-27 20:28:35 +00:00
|
|
|
chEvtBroadcast(&new_data_event);
|
2016-02-21 21:52:00 +00:00
|
|
|
}
|
2016-02-28 19:46:29 +00:00
|
|
|
|
|
|
|
bool is_serial_link_connected(void) {
|
|
|
|
return serial_link_connected;
|
|
|
|
}
|
|
|
|
|
|
|
|
host_driver_t* get_serial_link_driver(void) {
|
|
|
|
return &serial_driver;
|
|
|
|
}
|
|
|
|
|
2016-02-28 20:52:30 +00:00
|
|
|
// NOTE: The driver does nothing, because the master handles everything
|
2016-02-28 19:46:29 +00:00
|
|
|
uint8_t keyboard_leds(void) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void send_keyboard(report_keyboard_t *report) {
|
|
|
|
(void)report;
|
|
|
|
}
|
|
|
|
|
|
|
|
void send_mouse(report_mouse_t *report) {
|
|
|
|
(void)report;
|
|
|
|
}
|
|
|
|
|
|
|
|
void send_system(uint16_t data) {
|
|
|
|
(void)data;
|
|
|
|
}
|
|
|
|
|
|
|
|
void send_consumer(uint16_t data) {
|
|
|
|
(void)data;
|
|
|
|
}
|
|
|
|
|