forked from forks/qmk_firmware
72d4e4bfd7
* Add provisional Helix implementation to test the quantum/split_common.
* copy keyboards/helix/serial.[ch] to quantum/split_common/
* Make serial.c a pure driver.
Remove buffer name and buffer size from serial.c. They should be placed in the caller(matrix.c, split_utils.c).
* remove quantum/split_common/serial_backward_compatibility.h
* Changed array serial_master_buffer to structure serial_m2s_buffer.
* Changed array serial_slave_buffer to structure serial_s2m_buffer.
* Change keyboards/miniaxe/matrix.c
I also made changes to quantum/split_comon/matrix.c to keyboards/miniaxe/matrix.c.
Note: I contacted @ka2hiro, creator of miniaxe, and I got permission to change keyboards/miniaxe/matrix.c.
* update history comment in quantum/split_common/serial.c
* Revert "Add provisional Helix implementation to test the quantum/split_common."
This reverts commit 168c82ef82
.
* fix keyboards/miniaxe/matrix.c, quantum/split_common/matrix.c
avr-gcc 4.9.[23] report error.
avr-gcc 5.4.0, avr-gcc 7.3.0 pass.
It is funny.
* update comment quantum/split_common/serial.c
* Reserve RGBLIGHT_SPLIT macro in quantum/split_common
66 lines
2.1 KiB
C
66 lines
2.1 KiB
C
#ifndef SOFT_SERIAL_H
|
|
#define SOFT_SERIAL_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
// /////////////////////////////////////////////////////////////////
|
|
// Need Soft Serial defines in config.h
|
|
// /////////////////////////////////////////////////////////////////
|
|
// ex.
|
|
// #define SOFT_SERIAL_PIN ?? // ?? = D0,D1,D2,D3,E6
|
|
// OPTIONAL: #define SELECT_SOFT_SERIAL_SPEED ? // ? = 1,2,3,4,5
|
|
// // 1: about 137kbps (default)
|
|
// // 2: about 75kbps
|
|
// // 3: about 39kbps
|
|
// // 4: about 26kbps
|
|
// // 5: about 20kbps
|
|
//
|
|
// //// USE simple API (using signle-type transaction function)
|
|
// /* nothing */
|
|
// //// USE flexible API (using multi-type transaction function)
|
|
// #define SERIAL_USE_MULTI_TRANSACTION
|
|
//
|
|
// /////////////////////////////////////////////////////////////////
|
|
|
|
// Soft Serial Transaction Descriptor
|
|
typedef struct _SSTD_t {
|
|
uint8_t *status;
|
|
uint8_t initiator2target_buffer_size;
|
|
uint8_t *initiator2target_buffer;
|
|
uint8_t target2initiator_buffer_size;
|
|
uint8_t *target2initiator_buffer;
|
|
} SSTD_t;
|
|
#define TID_LIMIT( table ) (sizeof(table) / sizeof(SSTD_t))
|
|
|
|
// initiator is transaction start side
|
|
void soft_serial_initiator_init(SSTD_t *sstd_table, int sstd_table_size);
|
|
// target is interrupt accept side
|
|
void soft_serial_target_init(SSTD_t *sstd_table, int sstd_table_size);
|
|
|
|
// initiator resullt
|
|
#define TRANSACTION_END 0
|
|
#define TRANSACTION_NO_RESPONSE 0x1
|
|
#define TRANSACTION_DATA_ERROR 0x2
|
|
#define TRANSACTION_TYPE_ERROR 0x4
|
|
#ifndef SERIAL_USE_MULTI_TRANSACTION
|
|
int soft_serial_transaction(void);
|
|
#else
|
|
int soft_serial_transaction(int sstd_index);
|
|
#endif
|
|
|
|
// target status
|
|
// *SSTD_t.status has
|
|
// initiator:
|
|
// TRANSACTION_END
|
|
// or TRANSACTION_NO_RESPONSE
|
|
// or TRANSACTION_DATA_ERROR
|
|
// target:
|
|
// TRANSACTION_DATA_ERROR
|
|
// or TRANSACTION_ACCEPTED
|
|
#define TRANSACTION_ACCEPTED 0x8
|
|
#ifdef SERIAL_USE_MULTI_TRANSACTION
|
|
int soft_serial_get_and_clean_status(int sstd_index);
|
|
#endif
|
|
|
|
#endif /* SOFT_SERIAL_H */
|