zigbee入門知識

2021-06-22 18:56:14 字數 1109 閱讀 3681

工程配置檔案目錄(通道、panid)

一、協議棧基礎上點亮led燈,我們的裝置是eb裝置,等同於tq210b板的概念。

halledinit( );

halledonoff (hal_led_all, hal_led_mode_on);

需要在標頭檔案新增這個函式。

二、串列埠初始化:

之前一直不對,最後還是得出乙個結論,裝置他妹的是eb!!!搞了兩天!

uint8 *uart_buf;

uart_buf=(uint8 *)"test";

haluartcfg_t uartconfig;

uartconfig.configured           = true;              // 2430 don't care.

uartconfig.baudrate             = hal_uart_br_115200;

uartconfig.flowcontrol          = true;

uartconfig.flowcontrolthreshold = 48;

uartconfig.rx.maxbufsize        = 128;

uartconfig.tx.maxbufsize        = 128;

uartconfig.idletimeout          = 6;   // 2430 don't care.

uartconfig.intenable            = true;              // 2430 don't care.

uartconfig.callbackfunc         = null;

haluartopen (0, &uartconfig);

haluartwrite( 0, uart_buf, 4);

就這樣就能輸出了!

學習zigbee入門 5

if defined soft start if readcoordinatorjumper zgdevicelogicaltype zg devicetype coordinator else zgdevicelogicaltype zg devicetype router endif soft ...

zigbee的入門日記3

本檔案硬體基礎基於勝達電子zigbee學習板子,侵刪。老規矩,先上 功能描述 按鍵亮燈,按下s3後led2開關,按下s4後led3 開關,按下s5後led2.led3開關 輸入引數 none 輸出引數 none 返 回 值 none include define led2 p0 1 定義各個埠 de...

ZigBee新手入門填坑

1.為什麼乙個工程的時候,build出錯,非得rebuild all才可以解決呢?因為你改過一些東西之後,有時導致別的模組也需要重新編譯。但rebuild all就不同了,它把所有的東西都重新編譯,不管改過的,沒改過的 還是它認為有依賴的,沒依賴的,統統重來,於是問題就消除了,但如果對於特別大的專案...