Skip to content

Commit

Permalink
remove sample app printk
Browse files Browse the repository at this point in the history
  • Loading branch information
stuffmatic committed Apr 9, 2024
1 parent 35f3e03 commit a7559a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ static const struct bt_data sd[] = {
BT_DATA_BYTES(BT_DATA_UUID128_ALL, BLE_MIDI_SERVICE_UUID),
};

void main(void)
int main(void)
{
init_leds();
init_buttons();
Expand All @@ -199,7 +199,7 @@ void main(void)
ble_midi_init(&midi_callbacks);

int ad_err = bt_le_adv_start(BT_LE_ADV_CONN, ad, ARRAY_SIZE(ad), sd, ARRAY_SIZE(sd));
printk("bt_le_adv_start %d\n", ad_err);
// printk("bt_le_adv_start %d\n", ad_err);

while (1) {
/* Poll button events */
Expand Down

0 comments on commit a7559a9

Please sign in to comment.