diff options
author | jaseg <git@jaseg.net> | 2019-04-14 13:25:23 +0900 |
---|---|---|
committer | jaseg <git@jaseg.net> | 2019-04-14 13:25:23 +0900 |
commit | 668c89f88988e4bd6149fa7d13650254037f028d (patch) | |
tree | dbd2188c7f15fd2756de1e5d79b9ce569c0f4cd4 /driver_fw/serial.h | |
parent | 010d5587b776030690a2ab25902fe9eff52fcf5b (diff) | |
download | 8seg-668c89f88988e4bd6149fa7d13650254037f028d.tar.gz 8seg-668c89f88988e4bd6149fa7d13650254037f028d.tar.bz2 8seg-668c89f88988e4bd6149fa7d13650254037f028d.zip |
driver/fw: I2C LCD working
Diffstat (limited to 'driver_fw/serial.h')
-rw-r--r-- | driver_fw/serial.h | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/driver_fw/serial.h b/driver_fw/serial.h new file mode 100644 index 0000000..8e2bf3d --- /dev/null +++ b/driver_fw/serial.h @@ -0,0 +1,62 @@ +/* Megumin LED display firmware + * Copyright (C) 2018 Sebastian Götte <code@jaseg.net> + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef __SERIAL_H__ +#define __SERIAL_H__ + +#include "global.h" + +/* High-level stuff */ +void serial_init(void); +void send_status_reply(void); + +/* Internal low-level stuff */ +void tx_char(uint8_t c); +void send_frame_formatted(uint8_t *buf, int len); +volatile uint8_t *packet_received(int len); + +/* Error counters for debugging */ +extern unsigned int uart_overruns; +extern unsigned int invalid_frames; + +union tx_buf_union { + struct __attribute__((packed)) { + uint8_t firmware_version, + hardware_version, + pad[2]; + uint32_t uptime_s, + framerate_millifps, + uart_overruns, + invalid_frames; + int16_t vin_mv, + v3v3_mv, + iload_ma, + temp_celsius; + uint8_t global_brightness; + } desc_reply; + uint8_t byte_data[0]; +}; + +union rx_buf_union { + struct __attribute__((packed)) { uint8_t fb[32]; uint8_t end[0]; } set_fb_rq; + struct __attribute__((packed)) { uint8_t brightness; uint8_t end[0]; } set_global_brightness; + uint8_t byte_data[0]; + uint32_t mac_data; +}; +extern volatile union rx_buf_union rx_buf; + +#endif/*__SERIAL_H__*/ |