diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 7a5e58a..64a6303 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -35,11 +35,10 @@ jobs: run: | west build $GITHUB_WORKSPACE/tests/renode/ble_central -b $BOARD --build-dir $GITHUB_WORKSPACE/tests/renode/ble_central/build - - name: Build Posix working-directory: /tmp/ run: | - west build $GITHUB_WORKSPACE/samples/uptime -b $BOARD --build-dir $GITHUB_WORKSPACE/samples/uptime/build_posix + west build $GITHUB_WORKSPACE/samples/uptime -b native_posix_64 --build-dir $GITHUB_WORKSPACE/samples/uptime/build_posix - name : Upload Firmware uses: actions/upload-artifact@v4 diff --git a/samples/boards/native_posix_64.conf b/samples/boards/native_posix_64.conf new file mode 100644 index 0000000..ce5e102 --- /dev/null +++ b/samples/boards/native_posix_64.conf @@ -0,0 +1,3 @@ +# Disable HCI ACL for use with Android Emulator +# Refer to https://github.com/google/bumble/issues/220#issuecomment-1651200456 +CONFIG_BT_HCI_ACL_FLOW_CONTROL=n \ No newline at end of file diff --git a/samples/uptime/prj.conf b/samples/uptime/prj.conf index 855b6f4..8d9b5ee 100644 --- a/samples/uptime/prj.conf +++ b/samples/uptime/prj.conf @@ -15,5 +15,4 @@ CONFIG_STD_CPP17=y CONFIG_NEWLIB_LIBC=y CONFIG_BLE_UTILS=y CONFIG_BT_ASSERT=n -CONFIG_LOG=y -CONFIG_BT_HCI_ACL_FLOW_CONTROL=n +CONFIG_LOG=y \ No newline at end of file