Skip to content

Commit

Permalink
nimble/host: ble_gap.c don't use tabs as indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
m-gorecki committed Oct 29, 2024
1 parent 027a56d commit f8ea77b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions nimble/host/src/ble_gap.c
Original file line number Diff line number Diff line change
Expand Up @@ -7129,7 +7129,7 @@ ble_gap_init(void)

int
ble_gap_enh_read_transmit_power_level(uint16_t conn_handle, uint8_t phy, uint8_t *out_status, uint8_t *out_phy ,
uint8_t *out_curr_tx_power_level, uint8_t *out_max_tx_power_level)
uint8_t *out_curr_tx_power_level, uint8_t *out_max_tx_power_level)

{
#if MYNEWT_VAL(BLE_POWER_CONTROL)
Expand Down Expand Up @@ -7162,7 +7162,7 @@ ble_gap_enh_read_transmit_power_level(uint16_t conn_handle, uint8_t phy, uint8_t

int
ble_gap_read_remote_transmit_power_level(uint16_t conn_handle,
uint8_t phy)
uint8_t phy)
{
#if MYNEWT_VAL(BLE_POWER_CONTROL)
struct ble_hci_le_read_remote_transmit_power_level_cp cmd;
Expand All @@ -7181,11 +7181,11 @@ ble_gap_read_remote_transmit_power_level(uint16_t conn_handle,

int
ble_gap_set_path_loss_reporting_param(uint16_t conn_handle,
uint8_t high_threshold,
uint8_t high_hysteresis,
uint8_t low_threshold,
uint8_t low_hysteresis,
uint16_t min_time_spent)
uint8_t high_threshold,
uint8_t high_hysteresis,
uint8_t low_threshold,
uint8_t low_hysteresis,
uint16_t min_time_spent)
{
#if MYNEWT_VAL(BLE_POWER_CONTROL)
struct ble_hci_le_set_path_loss_report_param_cp cmd;
Expand All @@ -7208,7 +7208,7 @@ ble_gap_set_path_loss_reporting_param(uint16_t conn_handle,

int
ble_gap_set_path_loss_reporting_enable(uint16_t conn_handle,
uint8_t enable)
uint8_t enable)
{
#if MYNEWT_VAL(BLE_POWER_CONTROL)
struct ble_hci_le_set_path_loss_report_enable_cp cmd;
Expand All @@ -7227,8 +7227,8 @@ ble_gap_set_path_loss_reporting_enable(uint16_t conn_handle,

int
ble_gap_set_transmit_power_reporting_enable(uint16_t conn_handle,
uint8_t local_enable,
uint8_t remote_enable)
uint8_t local_enable,
uint8_t remote_enable)
{
#if MYNEWT_VAL(BLE_POWER_CONTROL)
struct ble_hci_le_set_transmit_power_report_enable_cp cmd;
Expand Down

0 comments on commit f8ea77b

Please sign in to comment.