Advertisement
Guest User

Make output

a guest
Jun 29th, 2016
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.33 KB | None | 0 0
  1. rm -rf _build
  2. echo Makefile
  3. Makefile
  4. mkdir _build
  5. Compiling file: app_error.c
  6. Compiling file: app_error_weak.c
  7. Compiling file: app_fifo.c
  8. Compiling file: app_timer.c
  9. Compiling file: app_trace.c
  10. Compiling file: app_util_platform.c
  11. Compiling file: fstorage.c
  12. Compiling file: nrf_assert.c
  13. Compiling file: nrf_log.c
  14. Compiling file: retarget.c
  15. Compiling file: sensorsim.c
  16. Compiling file: app_uart_fifo.c
  17. Compiling file: nrf_delay.c
  18. Compiling file: nrf_drv_common.c
  19. Compiling file: nrf_drv_gpiote.c
  20. Compiling file: nrf_drv_uart.c
  21. Compiling file: pstorage.c
  22. Compiling file: bsp.c
  23. Compiling file: bsp_btn_ble.c
  24. Compiling file: RTT_Syscalls_GCC.c
  25. Compiling file: SEGGER_RTT.c
  26. Compiling file: SEGGER_RTT_printf.c
  27. Compiling file: ble_advdata.c
  28. Compiling file: ble_advertising.c
  29. Compiling file: ble_bas.c
  30. Compiling file: ble_conn_params.c
  31. Compiling file: ble_dis.c
  32. Compiling file: ble_hrs.c
  33. Compiling file: ble_srv_common.c
  34. Compiling file: device_manager_peripheral.c
  35. Compiling file: system_nrf51.c
  36. Compiling file: softdevice_handler.c
  37. Compiling file: nrf_soc.c
  38. Compiling file: gcc_startup_nrf51.s
  39. Compiling file: i2c.cpp
  40. In file included from /home/dingari/dev/arm/genki_ble_test/lib/i2c/i2c.cpp:36:0:
  41. /home/dingari/nRF5_SDK/components/drivers_nrf/twi_master/nrf_drv_twi.h:91:1: warning: invalid conversion from 'void*' to 'NRF_TWI_Type*' [-fpermissive]
  42. }
  43. ^
  44. /home/dingari/dev/arm/genki_ble_test/lib/i2c/i2c.cpp:40:30: note: in expansion of macro 'NRF_DRV_TWI_INSTANCE'
  45. static nrf_drv_twi_t m_twi = NRF_DRV_TWI_INSTANCE(0);
  46. ^
  47. Compiling file: main.cpp
  48. In file included from /home/dingari/dev/arm/genki_ble_test/main.cpp:54:0:
  49. /home/dingari/dev/arm/genki_ble_test/main.cpp: In function 'void gpio_config()':
  50. /home/dingari/nRF5_SDK/components/drivers_nrf/gpiote/nrf_drv_gpiote.h:85:5: sorry, unimplemented: non-trivial designated initializers not supported
  51. }
  52. ^
  53. /home/dingari/dev/arm/genki_ble_test/main.cpp:139:46: note: in expansion of macro 'GPIOTE_CONFIG_OUT_SIMPLE'
  54. nrf_drv_gpiote_out_config_t out_config = GPIOTE_CONFIG_OUT_SIMPLE(false);
  55. ^
  56. /home/dingari/nRF5_SDK/components/drivers_nrf/gpiote/nrf_drv_gpiote.h:85:5: sorry, unimplemented: non-trivial designated initializers not supported
  57. }
  58. ^
  59. /home/dingari/dev/arm/genki_ble_test/main.cpp:139:46: note: in expansion of macro 'GPIOTE_CONFIG_OUT_SIMPLE'
  60. nrf_drv_gpiote_out_config_t out_config = GPIOTE_CONFIG_OUT_SIMPLE(false);
  61. ^
  62. In file included from /home/dingari/dev/arm/genki_ble_test/main.cpp:43:0:
  63. /home/dingari/dev/arm/genki_ble_test/main.cpp: In function 'void timers_init()':
  64. /home/dingari/nRF5_SDK/components/libraries/timer/app_timer.h:156:58: warning: converting 'false' to pointer type for argument 4 of 'uint32_t app_timer_init(uint32_t, uint8_t, void*, app_timer_evt_schedule_func_t)' [-Wconversion-null]
  65. SCHEDULER_FUNC); \
  66. ^
  67. /home/dingari/dev/arm/genki_ble_test/main.cpp:193:5: note: in expansion of macro 'APP_TIMER_INIT'
  68. APP_TIMER_INIT(APP_TIMER_PRESCALER, APP_TIMER_OP_QUEUE_SIZE, false);
  69. ^
  70. Makefile:216: recipe for target '_build/main.o' failed
  71. make: *** [_build/main.o] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement