├── .gitattributes ├── .gitignore ├── README.md ├── app_uart_library_example_with_ble ├── Capture - Define the constant for the development kit in Keil Target Options.png ├── README.md ├── app_uart_fifo_mod.c ├── arm │ ├── ble_app_uart.uvopt │ ├── ble_app_uart.uvoptx │ ├── ble_app_uart.uvproj │ └── ble_app_uart.uvprojx ├── ble_nus.c ├── ble_nus.h ├── gcc │ └── Makefile ├── main.c └── uart_conf.h ├── ble_app_uart_low_power ├── README.md ├── ble_app_uart_low_power_master │ ├── README.md │ ├── app_uart_fifo_mod.c │ ├── app_uart_master.h │ ├── arm │ │ ├── ble_app_uart.uvopt │ │ ├── ble_app_uart.uvoptx │ │ ├── ble_app_uart.uvproj │ │ └── ble_app_uart.uvprojx │ ├── ble_nus.c │ ├── ble_nus.h │ ├── main.c │ └── uart_conf.h └── ble_app_uart_low_power_slave │ ├── README.md │ ├── app_uart_fifo_mod.c │ ├── arm │ ├── ble_app_uart.uvopt │ ├── ble_app_uart.uvoptx │ ├── ble_app_uart.uvproj │ └── ble_app_uart.uvprojx │ ├── ble_nus.c │ ├── ble_nus.h │ ├── main.c │ └── uart_conf.h └── license.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/README.md -------------------------------------------------------------------------------- /app_uart_library_example_with_ble/Capture - Define the constant for the development kit in Keil Target Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/app_uart_library_example_with_ble/Capture - Define the constant for the development kit in Keil Target Options.png -------------------------------------------------------------------------------- /app_uart_library_example_with_ble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/app_uart_library_example_with_ble/README.md -------------------------------------------------------------------------------- /app_uart_library_example_with_ble/app_uart_fifo_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/app_uart_library_example_with_ble/app_uart_fifo_mod.c -------------------------------------------------------------------------------- /app_uart_library_example_with_ble/arm/ble_app_uart.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/app_uart_library_example_with_ble/arm/ble_app_uart.uvopt -------------------------------------------------------------------------------- /app_uart_library_example_with_ble/arm/ble_app_uart.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/app_uart_library_example_with_ble/arm/ble_app_uart.uvoptx -------------------------------------------------------------------------------- /app_uart_library_example_with_ble/arm/ble_app_uart.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/app_uart_library_example_with_ble/arm/ble_app_uart.uvproj -------------------------------------------------------------------------------- /app_uart_library_example_with_ble/arm/ble_app_uart.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/app_uart_library_example_with_ble/arm/ble_app_uart.uvprojx -------------------------------------------------------------------------------- /app_uart_library_example_with_ble/ble_nus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/app_uart_library_example_with_ble/ble_nus.c -------------------------------------------------------------------------------- /app_uart_library_example_with_ble/ble_nus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/app_uart_library_example_with_ble/ble_nus.h -------------------------------------------------------------------------------- /app_uart_library_example_with_ble/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/app_uart_library_example_with_ble/gcc/Makefile -------------------------------------------------------------------------------- /app_uart_library_example_with_ble/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/app_uart_library_example_with_ble/main.c -------------------------------------------------------------------------------- /app_uart_library_example_with_ble/uart_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/app_uart_library_example_with_ble/uart_conf.h -------------------------------------------------------------------------------- /ble_app_uart_low_power/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/README.md -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_master/README.md -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_master/app_uart_fifo_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_master/app_uart_fifo_mod.c -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_master/app_uart_master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_master/app_uart_master.h -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_master/arm/ble_app_uart.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_master/arm/ble_app_uart.uvopt -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_master/arm/ble_app_uart.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_master/arm/ble_app_uart.uvoptx -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_master/arm/ble_app_uart.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_master/arm/ble_app_uart.uvproj -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_master/arm/ble_app_uart.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_master/arm/ble_app_uart.uvprojx -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_master/ble_nus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_master/ble_nus.c -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_master/ble_nus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_master/ble_nus.h -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_master/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_master/main.c -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_master/uart_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_master/uart_conf.h -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_slave/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_slave/README.md -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_slave/app_uart_fifo_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_slave/app_uart_fifo_mod.c -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_slave/arm/ble_app_uart.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_slave/arm/ble_app_uart.uvopt -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_slave/arm/ble_app_uart.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_slave/arm/ble_app_uart.uvoptx -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_slave/arm/ble_app_uart.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_slave/arm/ble_app_uart.uvproj -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_slave/arm/ble_app_uart.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_slave/arm/ble_app_uart.uvprojx -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_slave/ble_nus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_slave/ble_nus.c -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_slave/ble_nus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_slave/ble_nus.h -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_slave/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_slave/main.c -------------------------------------------------------------------------------- /ble_app_uart_low_power/ble_app_uart_low_power_slave/uart_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/ble_app_uart_low_power/ble_app_uart_low_power_slave/uart_conf.h -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nrf51-UART-examples/HEAD/license.txt --------------------------------------------------------------------------------