diff options
Diffstat (limited to 'quantum/split_common/serial.h')
| -rw-r--r-- | quantum/split_common/serial.h | 78 |
1 files changed, 57 insertions, 21 deletions
diff --git a/quantum/split_common/serial.h b/quantum/split_common/serial.h index e566eb8a0..b6638b3bd 100644 --- a/quantum/split_common/serial.h +++ b/quantum/split_common/serial.h | |||
| @@ -1,29 +1,65 @@ | |||
| 1 | #ifndef MY_SERIAL_H | 1 | #ifndef SOFT_SERIAL_H |
| 2 | #define MY_SERIAL_H | 2 | #define SOFT_SERIAL_H |
| 3 | 3 | ||
| 4 | #include "config.h" | ||
| 5 | #include <stdbool.h> | 4 | #include <stdbool.h> |
| 6 | 5 | ||
| 7 | /* TODO: some defines for interrupt setup */ | 6 | // ///////////////////////////////////////////////////////////////// |
| 8 | #define SERIAL_PIN_DDR DDRD | 7 | // Need Soft Serial defines in config.h |
| 9 | #define SERIAL_PIN_PORT PORTD | 8 | // ///////////////////////////////////////////////////////////////// |
| 10 | #define SERIAL_PIN_INPUT PIND | 9 | // ex. |
| 11 | #define SERIAL_PIN_MASK _BV(PD0) | 10 | // #define SOFT_SERIAL_PIN ?? // ?? = D0,D1,D2,D3,E6 |
| 12 | #define SERIAL_PIN_INTERRUPT INT0_vect | 11 | // OPTIONAL: #define SELECT_SOFT_SERIAL_SPEED ? // ? = 1,2,3,4,5 |
| 12 | // // 1: about 137kbps (default) | ||
| 13 | // // 2: about 75kbps | ||
| 14 | // // 3: about 39kbps | ||
| 15 | // // 4: about 26kbps | ||
| 16 | // // 5: about 20kbps | ||
| 17 | // | ||
| 18 | // //// USE simple API (using signle-type transaction function) | ||
| 19 | // /* nothing */ | ||
| 20 | // //// USE flexible API (using multi-type transaction function) | ||
| 21 | // #define SERIAL_USE_MULTI_TRANSACTION | ||
| 22 | // | ||
| 23 | // ///////////////////////////////////////////////////////////////// | ||
| 13 | 24 | ||
| 14 | #define SERIAL_SLAVE_BUFFER_LENGTH MATRIX_ROWS/2 | 25 | // Soft Serial Transaction Descriptor |
| 15 | #define SERIAL_MASTER_BUFFER_LENGTH 1 | 26 | typedef struct _SSTD_t { |
| 27 | uint8_t *status; | ||
| 28 | uint8_t initiator2target_buffer_size; | ||
| 29 | uint8_t *initiator2target_buffer; | ||
| 30 | uint8_t target2initiator_buffer_size; | ||
| 31 | uint8_t *target2initiator_buffer; | ||
| 32 | } SSTD_t; | ||
| 33 | #define TID_LIMIT( table ) (sizeof(table) / sizeof(SSTD_t)) | ||
| 16 | 34 | ||
| 17 | // Address location defines | 35 | // initiator is transaction start side |
| 18 | #define SERIAL_BACKLIT_START 0x00 | 36 | void soft_serial_initiator_init(SSTD_t *sstd_table, int sstd_table_size); |
| 37 | // target is interrupt accept side | ||
| 38 | void soft_serial_target_init(SSTD_t *sstd_table, int sstd_table_size); | ||
| 19 | 39 | ||
| 20 | // Buffers for master - slave communication | 40 | // initiator resullt |
| 21 | extern volatile uint8_t serial_slave_buffer[SERIAL_SLAVE_BUFFER_LENGTH]; | 41 | #define TRANSACTION_END 0 |
| 22 | extern volatile uint8_t serial_master_buffer[SERIAL_MASTER_BUFFER_LENGTH]; | 42 | #define TRANSACTION_NO_RESPONSE 0x1 |
| 23 | 43 | #define TRANSACTION_DATA_ERROR 0x2 | |
| 24 | void serial_master_init(void); | 44 | #define TRANSACTION_TYPE_ERROR 0x4 |
| 25 | void serial_slave_init(void); | 45 | #ifndef SERIAL_USE_MULTI_TRANSACTION |
| 26 | int serial_update_buffers(void); | 46 | int soft_serial_transaction(void); |
| 27 | bool serial_slave_data_corrupt(void); | 47 | #else |
| 48 | int soft_serial_transaction(int sstd_index); | ||
| 49 | #endif | ||
| 28 | 50 | ||
| 51 | // target status | ||
| 52 | // *SSTD_t.status has | ||
| 53 | // initiator: | ||
| 54 | // TRANSACTION_END | ||
| 55 | // or TRANSACTION_NO_RESPONSE | ||
| 56 | // or TRANSACTION_DATA_ERROR | ||
| 57 | // target: | ||
| 58 | // TRANSACTION_DATA_ERROR | ||
| 59 | // or TRANSACTION_ACCEPTED | ||
| 60 | #define TRANSACTION_ACCEPTED 0x8 | ||
| 61 | #ifdef SERIAL_USE_MULTI_TRANSACTION | ||
| 62 | int soft_serial_get_and_clean_status(int sstd_index); | ||
| 29 | #endif | 63 | #endif |
| 64 | |||
| 65 | #endif /* SOFT_SERIAL_H */ | ||
