aboutsummaryrefslogtreecommitdiffstats
path: root/dfu.h
diff options
context:
space:
mode:
Diffstat (limited to 'dfu.h')
-rw-r--r--dfu.h38
1 files changed, 22 insertions, 16 deletions
diff --git a/dfu.h b/dfu.h
index 54a6ac2..f85bc62 100644
--- a/dfu.h
+++ b/dfu.h
@@ -8,26 +8,32 @@
typedef enum
{
- BLE_DFU_RESP_VAL_SUCCESS = 1, /**< Success.*/
- BLE_DFU_RESP_VAL_INVALID_STATE, /**< Invalid state.*/
- BLE_DFU_RESP_VAL_NOT_SUPPORTED, /**< Operation not supported.*/
- BLE_DFU_RESP_VAL_DATA_SIZE, /**< Data size exceeds limit.*/
- BLE_DFU_RESP_VAL_CRC_ERROR, /**< CRC Error.*/
- BLE_DFU_RESP_VAL_OPER_FAILED /**< Operation failed.*/
+ BLE_DFU_RESP_VAL_SUCCESS = 1, /**< Success.*/
+ BLE_DFU_RESP_VAL_INVALID_STATE, /**< Invalid state.*/
+ BLE_DFU_RESP_VAL_NOT_SUPPORTED, /**< Operation not supported.*/
+ BLE_DFU_RESP_VAL_DATA_SIZE, /**< Data size exceeds limit.*/
+ BLE_DFU_RESP_VAL_CRC_ERROR, /**< CRC Error.*/
+ BLE_DFU_RESP_VAL_OPER_FAILED /**< Operation failed.*/
} ble_dfu_resp_val_t;
enum
{
- OP_CODE_START_DFU = 1, /**< Value of the Op code field for 'Start DFU' command.*/
- OP_CODE_RECEIVE_INIT = 2, /**< Value of the Op code field for 'Initialize DFU parameters' command.*/
- OP_CODE_RECEIVE_FW = 3, /**< Value of the Op code field for 'Receive firmware image' command.*/
- OP_CODE_VALIDATE = 4, /**< Value of the Op code field for 'Validate firmware' command.*/
- OP_CODE_ACTIVATE_N_RESET = 5, /**< Value of the Op code field for 'Activate & Reset' command.*/
- OP_CODE_SYS_RESET = 6, /**< Value of the Op code field for 'Reset System' command.*/
- OP_CODE_IMAGE_SIZE_REQ = 7, /**< Value of the Op code field for 'Report received image size' command.*/
- OP_CODE_PKT_RCPT_NOTIF_REQ = 8, /**< Value of the Op code field for 'Request packet receipt notification.*/
- OP_CODE_RESPONSE = 16, /**< Value of the Op code field for 'Response.*/
- OP_CODE_PKT_RCPT_NOTIF = 17 /**< Value of the Op code field for 'Packets Receipt Notification'.*/
+ OP_CODE_START_DFU = 1, /**< Value of the Op code field for 'Start DFU' command.*/
+ OP_CODE_RECEIVE_INIT = 2, /**< Value of the Op code field for 'Initialize DFU parameters' command.*/
+ OP_CODE_RECEIVE_FW = 3, /**< Value of the Op code field for 'Receive firmware image' command.*/
+ OP_CODE_VALIDATE = 4, /**< Value of the Op code field for 'Validate firmware' command.*/
+ OP_CODE_ACTIVATE_N_RESET = 5, /**< Value of the Op code field for 'Activate & Reset' command.*/
+ OP_CODE_SYS_RESET = 6, /**< Value of the Op code field for 'Reset System' command.*/
+ OP_CODE_IMAGE_SIZE_REQ = 7, /**< Value of the Op code field for 'Report received image size' command.*/
+ OP_CODE_PKT_RCPT_NOTIF_REQ = 8, /**< Value of the Op code field for 'Request packet receipt notification.*/
+ OP_CODE_RESPONSE = 16, /**< Value of the Op code field for 'Response.*/
+ OP_CODE_PKT_RCPT_NOTIF = 17 /**< Value of the Op code field for 'Packets Receipt Notification'.*/
};
+enum {
+ DFU_MODE_SOFTDEVICE = 1,
+ DFU_MODE_BOOTLOADER = 2,
+ DFU_MODE_SD_BL = 3,
+ DFU_MODE_APPLICATION = 4
+};