Hi,
I am working on arduino_101 development board.
https://www.arduino.cc/en/Main/ArduinoBoard101
It has nrf51 BLE chip, Basically the configuration is the same as for
the nrf51dk-16kbram with the only difference:
--- a/hw/bsp/nrf51dk-16kbram/src/hal_bsp.c
+++ b/hw/bsp/nrf51dk-16kbram/src/hal_bsp.c
@@ -24,7 +24,7 @@
static const struct nrf51_uart_cfg uart_cfg = {
.suc_pin_tx = 9,
.suc_pin_rx = 11,
- .suc_pin_rts = 8,
+ .suc_pin_rts = 12,
.suc_pin_cts = 10
};
What is the best way of keeping the change? Making special BSP would be
too expensive for this one line change.
Best regards
Andrei Emeltchenko