#ifndef CONFIG_H_ #define CONFIG_H_ #define CONFIG_AFSK_RX_BUFLEN 512 #define CONFIG_AFSK_TX_BUFLEN 512 #define CONFIG_AX25_FRAME_BUF_LEN 512 /** * Maximum timeout in milliseconds waiting for channnel * to become free (ax25.dcd to reset back to false) */ #define CONFIG_AX25_MAX_WAIT_FOR_CH_FREE 3000 /** * AFSK RX timeout in ms, set to -1 to disable. * $WIZ$ type = "int" * $WIZ$ min = -1 */ #define CONFIG_AFSK_RXTIMEOUT 0 /** * AFSK Preamble length in [ms], before starting transmissions. * $WIZ$ type = "int" * $WIZ$ min = 1 */ #include //extern uint8_t kiss_txdelay; //#define CONFIG_AFSK_PREAMBLE_LEN (kiss_txdelay*10UL) #define CONFIG_AFSK_PREAMBLE_LEN 400UL /// 300 /** * AFSK Trailer length in [ms], before stopping transmissions. * $WIZ$ type = "int" * $WIZ$ min = 1 */ //extern uint8_t kiss_txtail; //#define CONFIG_AFSK_TRAILER_LEN (kiss_txtail*10UL) #define CONFIG_AFSK_TRAILER_LEN 50UL #endif /* CONFIG_H_ */