zoukankan      html  css  js  c++  java
  • Compile Options--编译选项

    目的:其主要作用是用于调试跟踪和测试

    主要包含:MT_TASK、MT_ZDO_FUNC and other MT compile options

    LCD_SUPPORTED、LCD_SUPPORTED=DEBUG、BLINK_LEDS

    且看正文逐一讲解;

    MT_TASK

    This compileoption enables the device to be able to talk to the Z-Tool PC application, andto be able to output minimal debug informationusing the debug_str() function. Removing this saves some code and RAM usage. 

    看点:作用,调用的函数

    注意事项:会增大代码量和RAM空间的大小,这对于8位机来说要谨慎,尤其是对于协议栈这样比较大的东西。

    MT_ZDO_FUNC and other MTcompile options

    MT_ZDO_FUNC is an example of acompile option that enables the ZDO

    commands to be used with Z-Tool. Most devices wouldnot need all of

    the monitor test commands to beenabled. Each ZDO command can be

    enabled individuallyin ZDConfig.h. Selectivelyenabling requests that

    need to be in the application minimizes code usage. See the Z-Stack

    Compile options document formore information on the different MT

    compile options.

    LCD_SUPPORTED

    This turns on support for displaying debug trace information on

    development boardsthat support an LCD. Ondevelopment kit hardware

    platforms that do not supportLCDs, setting LCD_SUPPORTED enables

    sending information to theSerial Port (since it does not have an LCD

    display). Enabling this compileoption uses a significant portion of RAM.

    LCD_SUPPORTED=DEBUG

    Setting LCD_SUPPORTED=DEBUGenables sending information to both

    the LCD and SerialPort, so code is actually larger.On platforms that do

    not support LCDs, debug information is only sent to the Serial Port,

    therefore using less code.

    BLINK_LEDS

    The BLINK_LEDS compile optionenables extended LED functionality at

    the expense of extracode and RAM space.

    See the Z-StackCompile Options document for more information.

    注意后面两个编译选项的区别,其实在很多时候这些的利用价值不是

    很大,但是用于调试还是有用的,例如用sniffer工具抓包。

    废话少说了,看英文文档才是王道。

  • 相关阅读:
    企业应用开发中最常用c++库
    ESOURCE_LOCKED
    c++标准之于gcc/vc/boost等实现相当于jsr规范之于sunjdk/ibmjdk/tomcat/weblogic等实现
    c++的各种类型转换方式
    c++的友元类、方法及其益处
    c/c++的typedef/using类型别名
    c++的class声明及相比java的更合理之处
    c++ sleep(windows/linux)
    c++不自动生成相关函数比如赋值、拷贝函数
    c++继承、多态以及与java的行为差异之处
  • 原文地址:https://www.cnblogs.com/farbeyond/p/5204614.html
Copyright © 2011-2022 走看看