zephyr: replace zephyr integer types with C99 types
git grep -l 'u\(8\|16\|32\|64\)_t' | \ xargs sed -i "s/u\(8\|16\|32\|64\)_t/uint\1_t/g" git grep -l 's\(8\|16\|32\|64\)_t' | \ xargs sed -i "s/s\(8\|16\|32\|64\)_t/int\1_t/g" Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
parent
ee6fa31af6
commit
a1b77fd589
2364 changed files with 32505 additions and 32505 deletions
|
@ -15,7 +15,7 @@
|
|||
#define LLL_CONN_MIC_FAIL 2
|
||||
|
||||
struct lll_tx {
|
||||
u16_t handle;
|
||||
uint16_t handle;
|
||||
void *node;
|
||||
};
|
||||
|
||||
|
@ -25,89 +25,89 @@ struct node_tx {
|
|||
memq_link_t *link;
|
||||
};
|
||||
|
||||
u8_t pdu[];
|
||||
uint8_t pdu[];
|
||||
};
|
||||
|
||||
struct lll_conn {
|
||||
struct lll_hdr hdr;
|
||||
|
||||
u8_t access_addr[4];
|
||||
u8_t crc_init[3];
|
||||
uint8_t access_addr[4];
|
||||
uint8_t crc_init[3];
|
||||
|
||||
u16_t handle;
|
||||
u16_t interval;
|
||||
u16_t latency;
|
||||
uint16_t handle;
|
||||
uint16_t interval;
|
||||
uint16_t latency;
|
||||
|
||||
u16_t latency_prepare;
|
||||
u16_t latency_event;
|
||||
u16_t event_counter;
|
||||
uint16_t latency_prepare;
|
||||
uint16_t latency_event;
|
||||
uint16_t event_counter;
|
||||
|
||||
u8_t data_chan_map[5];
|
||||
u8_t data_chan_count:6;
|
||||
u8_t data_chan_sel:1;
|
||||
u8_t role:1;
|
||||
uint8_t data_chan_map[5];
|
||||
uint8_t data_chan_count:6;
|
||||
uint8_t data_chan_sel:1;
|
||||
uint8_t role:1;
|
||||
|
||||
union {
|
||||
struct {
|
||||
u8_t data_chan_hop;
|
||||
u8_t data_chan_use;
|
||||
uint8_t data_chan_hop;
|
||||
uint8_t data_chan_use;
|
||||
};
|
||||
|
||||
u16_t data_chan_id;
|
||||
uint16_t data_chan_id;
|
||||
};
|
||||
|
||||
#if defined(CONFIG_BT_PERIPHERAL)
|
||||
struct {
|
||||
u8_t latency_enabled:1;
|
||||
u32_t window_widening_periodic_us;
|
||||
u32_t window_widening_max_us;
|
||||
u32_t window_widening_prepare_us;
|
||||
u32_t window_widening_event_us;
|
||||
u32_t window_size_prepare_us;
|
||||
u32_t window_size_event_us;
|
||||
uint8_t latency_enabled:1;
|
||||
uint32_t window_widening_periodic_us;
|
||||
uint32_t window_widening_max_us;
|
||||
uint32_t window_widening_prepare_us;
|
||||
uint32_t window_widening_event_us;
|
||||
uint32_t window_size_prepare_us;
|
||||
uint32_t window_size_event_us;
|
||||
} slave;
|
||||
#endif /* CONFIG_BT_PERIPHERAL */
|
||||
|
||||
#if defined(CONFIG_BT_CTLR_DATA_LENGTH)
|
||||
u16_t max_tx_octets;
|
||||
u16_t max_rx_octets;
|
||||
uint16_t max_tx_octets;
|
||||
uint16_t max_rx_octets;
|
||||
|
||||
#if defined(CONFIG_BT_CTLR_PHY)
|
||||
u16_t max_tx_time;
|
||||
u16_t max_rx_time;
|
||||
uint16_t max_tx_time;
|
||||
uint16_t max_rx_time;
|
||||
#endif /* CONFIG_BT_CTLR_PHY */
|
||||
#endif /* CONFIG_BT_CTLR_DATA_LENGTH */
|
||||
|
||||
#if defined(CONFIG_BT_CTLR_PHY)
|
||||
u8_t phy_tx:3;
|
||||
u8_t phy_flags:1;
|
||||
u8_t phy_tx_time:3;
|
||||
u8_t phy_rx:3;
|
||||
uint8_t phy_tx:3;
|
||||
uint8_t phy_flags:1;
|
||||
uint8_t phy_tx_time:3;
|
||||
uint8_t phy_rx:3;
|
||||
#endif /* CONFIG_BT_CTLR_PHY */
|
||||
|
||||
MEMQ_DECLARE(tx);
|
||||
memq_link_t link_tx;
|
||||
memq_link_t *link_tx_free;
|
||||
u8_t packet_tx_head_len;
|
||||
u8_t packet_tx_head_offset;
|
||||
uint8_t packet_tx_head_len;
|
||||
uint8_t packet_tx_head_offset;
|
||||
|
||||
u8_t sn:1;
|
||||
u8_t nesn:1;
|
||||
u8_t empty:1;
|
||||
uint8_t sn:1;
|
||||
uint8_t nesn:1;
|
||||
uint8_t empty:1;
|
||||
|
||||
#if defined(CONFIG_BT_CTLR_LE_ENC)
|
||||
u8_t enc_rx:1;
|
||||
u8_t enc_tx:1;
|
||||
uint8_t enc_rx:1;
|
||||
uint8_t enc_tx:1;
|
||||
|
||||
struct ccm ccm_rx;
|
||||
struct ccm ccm_tx;
|
||||
#endif /* CONFIG_BT_CTLR_LE_ENC */
|
||||
|
||||
#if defined(CONFIG_BT_CTLR_CONN_RSSI)
|
||||
u8_t rssi_latest;
|
||||
uint8_t rssi_latest;
|
||||
#if defined(CONFIG_BT_CTLR_CONN_RSSI_EVENT)
|
||||
u8_t rssi_reported;
|
||||
u8_t rssi_sample_count;
|
||||
uint8_t rssi_reported;
|
||||
uint8_t rssi_sample_count;
|
||||
#endif /* CONFIG_BT_CTLR_CONN_RSSI_EVENT */
|
||||
#endif /* CONFIG_BT_CTLR_CONN_RSSI */
|
||||
|
||||
|
@ -116,16 +116,16 @@ struct lll_conn {
|
|||
#endif /* CONFIG_BT_CTLR_CONN_META */
|
||||
|
||||
#if defined(CONFIG_BT_CTLR_TX_PWR_DYNAMIC_CONTROL)
|
||||
s8_t tx_pwr_lvl;
|
||||
int8_t tx_pwr_lvl;
|
||||
#endif
|
||||
};
|
||||
|
||||
int lll_conn_init(void);
|
||||
int lll_conn_reset(void);
|
||||
|
||||
u8_t lll_conn_sca_local_get(void);
|
||||
u32_t lll_conn_ppm_local_get(void);
|
||||
u32_t lll_conn_ppm_get(u8_t sca);
|
||||
uint8_t lll_conn_sca_local_get(void);
|
||||
uint32_t lll_conn_ppm_local_get(void);
|
||||
uint32_t lll_conn_ppm_get(uint8_t sca);
|
||||
void lll_conn_prepare_reset(void);
|
||||
int lll_conn_is_abort_cb(void *next, int prio, void *curr,
|
||||
lll_prepare_cb_t *resume_cb, int *resume_prio);
|
||||
|
@ -136,7 +136,7 @@ void lll_conn_isr_abort(void *param);
|
|||
void lll_conn_rx_pkt_set(struct lll_conn *lll);
|
||||
void lll_conn_tx_pkt_set(struct lll_conn *lll, struct pdu_data *pdu_data_tx);
|
||||
void lll_conn_pdu_tx_prep(struct lll_conn *lll, struct pdu_data **pdu_data_tx);
|
||||
void lll_conn_flush(u16_t handle, struct lll_conn *lll);
|
||||
void lll_conn_flush(uint16_t handle, struct lll_conn *lll);
|
||||
|
||||
extern void ull_conn_lll_ack_enqueue(u16_t handle, struct node_tx *tx);
|
||||
extern u16_t ull_conn_lll_max_tx_octets_get(struct lll_conn *lll);
|
||||
extern void ull_conn_lll_ack_enqueue(uint16_t handle, struct node_tx *tx);
|
||||
extern uint16_t ull_conn_lll_max_tx_octets_get(struct lll_conn *lll);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue