├── .gitignore ├── Makefile ├── README.md ├── ble_app_uart_gcc_nrf51.ld ├── ble_app_uart_gcc_nrf51_16k.ld ├── buffer.c ├── buffer.h ├── crc.c ├── crc.h ├── datatypes.h ├── esb_timeslot.c ├── esb_timeslot.h ├── hex └── nrf51_vesc_ble_wt.hex ├── images └── conn_example.jpg ├── main.c ├── openocd.cfg ├── packet.c ├── packet.h ├── sdk_config.h ├── sdk_mod ├── nrf_esb.c ├── nrf_esb.h ├── nrf_esb_error_codes.h └── nrf_esb_resources.h ├── upload_merged ├── upload_merged_trampa └── upload_merged_wt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/README.md -------------------------------------------------------------------------------- /ble_app_uart_gcc_nrf51.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/ble_app_uart_gcc_nrf51.ld -------------------------------------------------------------------------------- /ble_app_uart_gcc_nrf51_16k.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/ble_app_uart_gcc_nrf51_16k.ld -------------------------------------------------------------------------------- /buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/buffer.c -------------------------------------------------------------------------------- /buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/buffer.h -------------------------------------------------------------------------------- /crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/crc.c -------------------------------------------------------------------------------- /crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/crc.h -------------------------------------------------------------------------------- /datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/datatypes.h -------------------------------------------------------------------------------- /esb_timeslot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/esb_timeslot.c -------------------------------------------------------------------------------- /esb_timeslot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/esb_timeslot.h -------------------------------------------------------------------------------- /hex/nrf51_vesc_ble_wt.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/hex/nrf51_vesc_ble_wt.hex -------------------------------------------------------------------------------- /images/conn_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/images/conn_example.jpg -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/main.c -------------------------------------------------------------------------------- /openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/openocd.cfg -------------------------------------------------------------------------------- /packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/packet.c -------------------------------------------------------------------------------- /packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/packet.h -------------------------------------------------------------------------------- /sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/sdk_config.h -------------------------------------------------------------------------------- /sdk_mod/nrf_esb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/sdk_mod/nrf_esb.c -------------------------------------------------------------------------------- /sdk_mod/nrf_esb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/sdk_mod/nrf_esb.h -------------------------------------------------------------------------------- /sdk_mod/nrf_esb_error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/sdk_mod/nrf_esb_error_codes.h -------------------------------------------------------------------------------- /sdk_mod/nrf_esb_resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/sdk_mod/nrf_esb_resources.h -------------------------------------------------------------------------------- /upload_merged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/upload_merged -------------------------------------------------------------------------------- /upload_merged_trampa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/upload_merged_trampa -------------------------------------------------------------------------------- /upload_merged_wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedderb/nrf51_vesc/HEAD/upload_merged_wt --------------------------------------------------------------------------------