forked from forks/qmk_firmware
881f27b461
* add temporary test shell-spript * Use LINK_TIME_OPTIMIZATION_ENABLE instead of Link_Time_Optimization No change in build result. * Helix config.h use '#pragma once' No change in build result. * Helix helix.h,rev?/rev?.h,pico/pico.h use '#pragma once' No change in build result. * Use drivers/avr/pro_micro.h instead of keyboards/helix/pro_micro.h No change in build result. * remove keyboards/helix/{rev2|pico}/serial_config.h No change in build result. * 'HELIX_ROWS' macro is now referenced only in rev1/config.h and rev2/config.h. No change in build result. * The contents of helix/rules.mk were distributed to subdirectories. This is a preparation to create a new subdirectory for helix code using split_common. No change in build result. remove 'USE_I2C = yes', 'SUBPROJECT_rev1 = no' from keyboards/helix/rules.mk. follow code move from keyboards/helix/rules.mk to keyboards/helix/{rev1,rev2,pico}/rules.mk. ---- SRC += i2c.c SRC += serial.c SRC += ssd1306.c CUSTOM_MATRIX = yes --- * helix/{i2c.[ch], serial.[ch], ssd1306.[ch]} move into helix/local_drivers/ No change in build result. * Simplified 'helix/pico/keymap/*/rules.mk' using KEYBOARD_LOCAL_FEATURES_MK. No change in build result. * add keyboards/helix/pico/local_features.mk * add 'KEYBOARD_LOCAL_FEATURES_MK := $(dir $(lastword $(MAKEFILE_LIST)))local_features.mk' into keyboards/helix/pico/rules.mk * remove HELIX_CUSTOMISE_MSG from keyboards/helix/pico/keymaps/*/rules.mk * remove HELIX= process from keyboards/helix/pico/keymaps/*/rules.mk * remove convert code(helix to standaerd) from keyboards/helix/pico/keymaps/*/rules.mk * add 'include $(strip $(KEYBOARD_LOCAL_FEATURES_MK))' into keyboards/helix/pico/keymaps/*/rules.mk * Simplified 'helix/rev2/keymap/*/rules.mk' using KEYBOARD_LOCAL_FEATURES_MK. No change in build result. * add keyboards/helix/rev2/local_features.mk * add 'KEYBOARD_LOCAL_FEATURES_MK := $(dir $(lastword $(MAKEFILE_LIST)))local_features.mk' into keyboards/helix/rev2/rules.mk * remove HELIX_CUSTOMISE_MSG from keyboards/helix/rev2/keymaps/*/rules.mk * remove HELIX= process from keyboards/helix/rev2/keymaps/*/rules.mk * remove convert code(helix to standaerd) from keyboards/helix/rev2/keymaps/*/rules.mk * add 'include $(strip $(KEYBOARD_LOCAL_FEATURES_MK))' into keyboards/helix/rev2/keymaps/*/rules.mk * Added helix keyboard build NEW method. No change in build result. ## Helix build $ make helix:default ## no oled, no backlight, no underglow $ make helix/rev2/back:default ## no oled, with backlight, no underglow $ make helix/rev2/under:default ## no oled, no backlight, with underglow $ make helix/rev2/oled:default ## with oled, no backlight, not underglow $ make helix/rev2/oled/back:default ## with oled, with backlight, no underglow $ make helix/rev2/back/oled:default ## with oled, with backlight, no underglow $ make helix/rev2/oled/under:default ## with oled, no backlight, with underglow $ make helix/rev2/under/oled:default ## with oled, no backlight, with underglow ## Helix pico build $ make helix/pico:default ## no oled, no backlight, no underglow $ make helix/pico/back:default ## no oled, with backlight, no underglow $ make helix/pico/under:default ## no oled, no backlight, with underglow $ make helix/pico/oled:default ## with oled, no backlight, not underglow * add temporary test shell-spript * test end remove test script. Revert "add temporary test shell-spript" This reverts commit5dac20cd0f
. * test end remove test script. Revert "add temporary test shell-spript" This reverts commitec49f63b2d
. * Extended the 'HELIX=' option. add keyword 'verbose', 'no_ani'. No change in build result. * update keyboards/helix/{rev2,pico}/keymaps/default/readme.md * rename KEYBOARD_TOP_DIR to HELIX_TOP_DIR in rules.mk * update keyboards/helix/{rev2,pico}/keymaps/default/readme_jp.md * rm keyboards/helix/pico/oled/rules.mk * update helix's readmes. All the ':avrdude' was replaced with ':flash'. * remove F_CPU, ARCH, F_USB, INTERRUPT_CONTROL_ENDPOINT from helix/rules.mk No change in build result.
90 lines
3 KiB
C
90 lines
3 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 OLD API (compatible with let's split serial.c)
|
|
// ex.
|
|
// #define SERIAL_SLAVE_BUFFER_LENGTH MATRIX_ROWS/2
|
|
// #define SERIAL_MASTER_BUFFER_LENGTH 1
|
|
//
|
|
// //// USE NEW API
|
|
// //// USE simple API (using signle-type transaction function)
|
|
// #define SERIAL_USE_SINGLE_TRANSACTION
|
|
// //// USE flexible API (using multi-type transaction function)
|
|
// #define SERIAL_USE_MULTI_TRANSACTION
|
|
//
|
|
// /////////////////////////////////////////////////////////////////
|
|
|
|
|
|
//////////////// for backward compatibility ////////////////////////////////
|
|
#if !defined(SERIAL_USE_SINGLE_TRANSACTION) && !defined(SERIAL_USE_MULTI_TRANSACTION)
|
|
/* --- USE OLD API (compatible with let's split serial.c) */
|
|
#if SERIAL_SLAVE_BUFFER_LENGTH > 0
|
|
extern volatile uint8_t serial_slave_buffer[SERIAL_SLAVE_BUFFER_LENGTH];
|
|
#endif
|
|
#if SERIAL_MASTER_BUFFER_LENGTH > 0
|
|
extern volatile uint8_t serial_master_buffer[SERIAL_MASTER_BUFFER_LENGTH];
|
|
#endif
|
|
|
|
void serial_master_init(void);
|
|
void serial_slave_init(void);
|
|
int serial_update_buffers(void);
|
|
|
|
#endif // end of USE OLD API
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
// 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 */
|