1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #ifndef ZOAD_PREAMBLE_H
- #define ZOAD_PREAMBLE_H
- #include "hal_types.h"
- #define PREAMBLE_MAGIC1 0xA5
- #define PREAMBLE_MAGIC2 0x5A
- #if defined(ZDO_COORDINATOR)
- #define HAL_OAD_VERS ((uint16) 0xC000)
- #define HAL_OAD_MANU ((uint16) 0xF8F8)
- #define HAL_OAD_PROD ((uint16) 0x00AD)
- #elif defined(RTR_NWK)
- #define HAL_OAD_VERS ((uint16) 0x4000)
- #define HAL_OAD_MANU ((uint16) 0xF8F8)
- #define HAL_OAD_PROD ((uint16) 0x00AD)
- #else
- #define HAL_OAD_VERS ((uint16) 0x1000)
- #define HAL_OAD_MANU ((uint16) 0xF8F8)
- #define HAL_OAD_PROD ((uint16) 0x00AD)
- #endif
- #endif
|