Decodes IMU frames from received IMU sensor raw data/packets.
Any processed messages can be picked up using dwSensorIMU_readFrame() or dwSensorIMU_popFrame() function.
This API function will achieve functionality of this software unit:
- Decode IMU sensor packets into IMU frames and cache decoded IMU frames
This API function will push specified IMU sensor packet into its internal IMU decoders. Since internal IMU decoder will return once an IMU frame is decoded, or no IMU frames could be decoded from remaining bytes from specified IMU sensor packet, thus this API function will keep driving the decoder to return as many IMU frames as possible, until decoder could return no new IMU frames. All decoded IMU frames are cached internally and could be accessed by dwSensorIMU_readFrame() or dwSensorIMU_popFrame(). Based on sensor configuration value 'output-timestamp=', decoded IMU frames would be modified in their hostTimestamp field values accordingly.
This function should only be called after sensor is started, and with raw IMU sensor packet(s) returned from dwSensor_readRawData. After this raw sensor packet is processed by this function, user should also call dwSensor_returnRawData to return the memory block to SAL.
This function is a synchronous function. Customers have to wait till the raw IMU sensor data is processed.
- Parameters
-
[in] | data | Undecoded imu data. Non-null pointer |
[in] | size | Size in bytes of the raw data. Range: (0, INT_MAX]. Note 0 will result in DW_NOT_READY return value. |
[in] | sensor | Sensor handle of the sensor previously created with 'dwSAL_createSensor()'. |
- Returns
- DW_INVALID_HANDLE - if given sensor handle is invalid. Only handles returned by dwSAL_createSensor with IMU sensor protocols are allowed.
DW_INVALID_ARGUMENTS - if given arguments are invalid, Here it means input pointer 'data' is empty
DW_NOT_READY - if more data needs to be passed in (loop while it returns 'DW_NOT_READY').
DW_SUCCESS - specified raw IMU sensor packet was decoded into one or more IMU frames. Please read decoded IMU frames via dwSensorIMU_readFrame or dwSensorIMU_popFrame
- Note
- It's possible that raw IMU data block data will be decoded into zero, one or more IMU frames. All these decoded IMU frames will be stored into internal IMU frame queue and could be accessed via dwSensorIMU_readFrame() or dwSensorIMU_popFrame(). Scenarios that no IMU frames could be decoded: The IMU packet itself is invalid(for example, an IMU packet with incorrect packet size) Scenarios that one IMU frame could be decoded: The IMU packet itself is valid(for example, an IMU packets with expected size and could be recognized and parsed successfully by decoder) Scenarios that more than one IMU frames could be decoded: IMU packet contains multiple sensor messages(for example, an IMU packet that contains multiple IMU messages that are defined by IMU vendors, and each such IMU message could lead to a separate IMU frame to be decoded).
-
It's also possible that part of a raw IMU data block data could not be recognized and decoded by IMU sensor's internal decoder, because these decoders are usually designed to recognize and parse a selected part of available types of raw sensor packets. This function returns DW_SUCCESS if part of this raw IMU sensor packet is decoded into one or more IMU frames.
-
If internal cache of IMU frames is full, decoded IMU frames won't be cached anymore and they'll be discarded. In this case a warning message 'IMU: sensor generates data faster, then reader consumes. Losing messages' is printed, but API function won't return any error codes in this case - users will still see DW_SUCCESS if at least one decoded IMU frame(s) are cached. This could happen if customers called this API for too many times w/o calling dwSensorIMU_readFrame or dwSensorIMU_popFrame to retrieve decoded IMU frames which is a typical buffer overflow scenario.
- See also
- http://www.open-lab.net/docs/drive/drive-os/6.0.8.1/public/driveworks-nvsdk/nvsdk_dw_html/sensors_usecase4.html for description of available option values for 'output-timestamp=' sensor parameter.
- API Group
- Init: Yes
- Runtime: Yes
- De-Init: Yes