大家好,我是一個新手
請問我從Bluetooth Developer Studio生成一個BUTTON的BLE UUID代碼
如附件test1.7z
test1.7z
我要如何結合到
nRF5_SDK13.0.0_ble_app_hrs_pca10040_s132.zip
這個範例裡面呢??
讓nRF Coonect可以看到新的UUID碼
目前放進去後變成這樣
會遇到以下幾種錯誤
這些錯誤該如何解決呢?? 煩請指導一下,謝謝
大家好,我是一個新手
請問我從Bluetooth Developer Studio生成一個BUTTON的BLE UUID代碼
如附件test1.7z
test1.7z
我要如何結合到
nRF5_SDK13.0.0_ble_app_hrs_pca10040_s132.zip
這個範例裡面呢??
讓nRF Coonect可以看到新的UUID碼
目前放進去後變成這樣
會遇到以下幾種錯誤
這些錯誤該如何解決呢?? 煩請指導一下,謝謝
Hi,
You have to add the file manually to the makefile. The makefile is located in the folder experimental_bluetoothds_template\pca10040\s132\armgcc
. Add $(PROJ_DIR)/ble_button_test_service.c \
under SRC_FILES, e.g. under service_if.c like this:
$(PROJ_DIR)/main.c \
$(PROJ_DIR)/service_if.c \
$(PROJ_DIR)/ble_button_test_service.c \
Dear sugurd:
I test OK. Thank you very much.