|
| 1 | +# Matter Telink Temperature Measurement Example Application |
| 2 | + |
| 3 | +The Telink Temperature Measurement Example demonstrates getting simulated data |
| 4 | +from temperature sensor. In further releases the real sensor handling will be |
| 5 | +implemented along. It uses buttons to test changing the device states and LEDs |
| 6 | +to show the state of these changes. You can use this example as a reference for |
| 7 | +creating your own application. |
| 8 | + |
| 9 | + |
| 10 | + |
| 11 | +## Build and flash |
| 12 | + |
| 13 | +1. Pull docker image from repository: |
| 14 | + |
| 15 | + ```bash |
| 16 | + $ docker pull connectedhomeip/chip-build-telink:latest |
| 17 | + ``` |
| 18 | + |
| 19 | +1. Run docker container: |
| 20 | + |
| 21 | + ```bash |
| 22 | + $ docker run -it --rm -v ${CHIP_BASE}:/root/chip -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule "c 189:* rmw" connectedhomeip/chip-build-telink:latest |
| 23 | + ``` |
| 24 | + |
| 25 | + here `${CHIP_BASE}` is directory which contains CHIP repo files **!!!Pay |
| 26 | + attention that OUTPUT_DIR should contains ABSOLUTE path to output dir** |
| 27 | + |
| 28 | +1. Activate the build environment: |
| 29 | + |
| 30 | + ```bash |
| 31 | + $ source ./scripts/activate.sh |
| 32 | + ``` |
| 33 | + |
| 34 | +1. In the example dir run: |
| 35 | + |
| 36 | + ```bash |
| 37 | + $ west build |
| 38 | + ``` |
| 39 | + |
| 40 | +1. Flash binary: |
| 41 | + |
| 42 | + ``` |
| 43 | + $ west flash --erase |
| 44 | + ``` |
| 45 | + |
| 46 | +## Usage |
| 47 | + |
| 48 | +### UART |
| 49 | + |
| 50 | +To get output from device, connect UART to following pins: |
| 51 | + |
| 52 | +| Name | Pin | |
| 53 | +| :--: | :---------------------------- | |
| 54 | +| RX | PB3 (pin 17 of J34 connector) | |
| 55 | +| TX | PB2 (pin 16 of J34 connector) | |
| 56 | +| GND | GND | |
| 57 | + |
| 58 | +### Buttons |
| 59 | + |
| 60 | +The following buttons are available on **tlsr9518adk80d** board: |
| 61 | + |
| 62 | +| Name | Function | Description | |
| 63 | +| :------- | :--------------------- | :----------------------------------------------------------------------------------------------------- | |
| 64 | +| Button 1 | Factory reset | Perform factory reset to forget currently commissioned Thread network and back to uncommissioned state | |
| 65 | +| Button 2 | NA | NA | |
| 66 | +| Button 3 | Thread start | Commission thread with static credentials and enables the Thread on device | |
| 67 | +| Button 4 | Open commission window | The button is opening commissioning window to perform commissioning over BLE | |
| 68 | + |
| 69 | +### LEDs |
| 70 | + |
| 71 | +#### Indicate current state of Thread network |
| 72 | + |
| 73 | +**Red** LED indicates current state of Thread network. It is able to be in |
| 74 | +following states: |
| 75 | + |
| 76 | +| State | Description | |
| 77 | +| :-------------------------- | :--------------------------------------------------------------------------- | |
| 78 | +| Blinks with short pulses | Device is not commissioned to Thread, Thread is disabled | |
| 79 | +| Blinks with frequent pulses | Device is commissioned, Thread enabled. Device trying to JOIN thread network | |
| 80 | +| Blinks with wide pulses | Device commissioned and joined to thread network as CHILD | |
| 81 | + |
| 82 | +### CHIP tool commands |
| 83 | + |
| 84 | +1. Build |
| 85 | + [chip-tool cli](https://github.com/project-chip/connectedhomeip/blob/master/examples/chip-tool/README.md) |
| 86 | + |
| 87 | +2. Pair with device |
| 88 | + |
| 89 | + ``` |
| 90 | + ${CHIP_TOOL_DIR}/chip-tool pairing ble-thread ${NODE_ID} hex:${DATASET} ${PIN_CODE} ${DISCRIMINATOR} |
| 91 | + ``` |
| 92 | + |
| 93 | + Example: |
| 94 | + |
| 95 | + ``` |
| 96 | + ./chip-tool pairing ble-thread 1234 hex:0e080000000000010000000300000f35060004001fffe0020811111111222222220708fd61f77bd3df233e051000112233445566778899aabbccddeeff030e4f70656e54687265616444656d6f010212340410445f2b5ca6f2a93a55ce570a70efeecb0c0402a0fff8 20202021 3840 |
| 97 | + ``` |
| 98 | + |
| 99 | +### OTA with Linux OTA Provider |
| 100 | + |
| 101 | +OTA feature enabled by default only for ota-requestor-app example. To enable OTA |
| 102 | +feature for another Telink example: |
| 103 | + |
| 104 | +- set CONFIG_CHIP_OTA_REQUESTOR=y in corresponding "prj.conf" configuration |
| 105 | + file. |
| 106 | + |
| 107 | +After build application with enabled OTA feature, use next binary files: |
| 108 | + |
| 109 | +- zephyr.bin - main binary to flash PCB (Use 2MB PCB). |
| 110 | +- zephyr-ota.bin - binary for OTA Provider |
| 111 | + |
| 112 | +All binaries has the same SW version. To test OTA “zephyr-ota.bin” should have |
| 113 | +higher SW version than base SW. Set CONFIG_CHIP_DEVICE_SOFTWARE_VERSION=2 in |
| 114 | +corresponding “prj.conf” configuration file. |
| 115 | + |
| 116 | +Usage of OTA: |
| 117 | + |
| 118 | +- Build the [Linux OTA Provider](../../ota-provider-app/linux) |
| 119 | + |
| 120 | + ``` |
| 121 | + ./scripts/examples/gn_build_example.sh examples/ota-provider-app/linux out/ota-provider-app chip_config_network_layer_ble=false |
| 122 | + ``` |
| 123 | + |
| 124 | +- Run the Linux OTA Provider with OTA image. |
| 125 | + |
| 126 | + ``` |
| 127 | + ./chip-ota-provider-app -f zephyr-ota.bin |
| 128 | + ``` |
| 129 | + |
| 130 | +- Provision the Linux OTA Provider using chip-tool |
| 131 | + |
| 132 | + ``` |
| 133 | + ./chip-tool pairing onnetwork ${OTA_PROVIDER_NODE_ID} 20202021 |
| 134 | + ``` |
| 135 | + |
| 136 | + here: |
| 137 | + |
| 138 | + - \${OTA_PROVIDER_NODE_ID} is the node id of Linux OTA Provider |
| 139 | + |
| 140 | +- Configure the ACL of the ota-provider-app to allow access |
| 141 | + |
| 142 | + ``` |
| 143 | + ./chip-tool accesscontrol write acl '[{"fabricIndex": 1, "privilege": 5, "authMode": 2, "subjects": [112233], "targets": null}, {"fabricIndex": 1, "privilege": 3, "authMode": 2, "subjects": null, "targets": null}]' ${OTA_PROVIDER_NODE_ID} 0 |
| 144 | + ``` |
| 145 | + |
| 146 | + here: |
| 147 | + |
| 148 | + - \${OTA_PROVIDER_NODE_ID} is the node id of Linux OTA Provider |
| 149 | + |
| 150 | +- Use the chip-tool to announce the ota-provider-app to start the OTA process |
| 151 | + |
| 152 | + ``` |
| 153 | + ./chip-tool otasoftwareupdaterequestor announce-ota-provider ${OTA_PROVIDER_NODE_ID} 0 0 0 ${DEVICE_NODE_ID} 0 |
| 154 | + ``` |
| 155 | + |
| 156 | + here: |
| 157 | + |
| 158 | + - \${OTA_PROVIDER_NODE_ID} is the node id of Linux OTA Provider |
| 159 | + - \${DEVICE_NODE_ID} is the node id of paired device |
| 160 | + |
| 161 | +Once the transfer is complete, OTA requestor sends ApplyUpdateRequest command to |
| 162 | +OTA provider for applying the image. Device will restart on successful |
| 163 | +application of OTA image. |
0 commit comments