Skip to content
Snippets Groups Projects
Commit ee741a42 authored by kYc0o's avatar kYc0o
Browse files

drivers/xbee: add UL to constants for 8 and 16 bit compatibility

parent 5f26171e
No related branches found
No related tags found
No related merge requests found
...@@ -41,11 +41,11 @@ ...@@ -41,11 +41,11 @@
/** /**
* @brief Delay when entering command mode, must be > 1s * @brief Delay when entering command mode, must be > 1s
*/ */
#define ENTER_CMD_MODE_DELAY (1100U * 1000U) #define ENTER_CMD_MODE_DELAY (1100UL * US_PER_MS)
/** /**
* @brief Delay when resetting the device, 10ms * @brief Delay when resetting the device, 10ms
*/ */
#define RESET_DELAY (10U * 1000U) #define RESET_DELAY (10UL * US_PER_MS)
/** /**
* @brief Timeout for receiving AT command response * @brief Timeout for receiving AT command response
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment