Home
last modified time | relevance | path

Searched refs:duration (Results 1 – 4 of 4) sorted by relevance

/hal_wurthelektronik-latest/sensors/WeSensorsSDK/WSEN_ISDS_2536030320001_hal/
DWSEN_ISDS_2536030320001_hal.h1173 int8_t ISDS_setSleepDuration(WE_sensorInterface_t* sensorInterface, uint8_t duration);
1174 int8_t ISDS_getSleepDuration(WE_sensorInterface_t* sensorInterface, uint8_t *duration);
1175 int8_t ISDS_setWakeUpDuration(WE_sensorInterface_t* sensorInterface, uint8_t duration);
1176 int8_t ISDS_getWakeUpDuration(WE_sensorInterface_t* sensorInterface, uint8_t *duration);
1181 int8_t ISDS_setFreeFallDuration(WE_sensorInterface_t* sensorInterface, uint8_t duration);
1182 int8_t ISDS_getFreeFallDuration(WE_sensorInterface_t* sensorInterface, uint8_t *duration);
DWSEN_ISDS_2536030320001_hal.c4279 int8_t ISDS_setSleepDuration(WE_sensorInterface_t* sensorInterface, uint8_t duration) in ISDS_setSleepDuration() argument
4288 wakeUpDur.sleepDuration = (duration & 0x0F); in ISDS_setSleepDuration()
4299 int8_t ISDS_getSleepDuration(WE_sensorInterface_t* sensorInterface, uint8_t *duration) in ISDS_getSleepDuration() argument
4308 *duration = wakeUpDur.sleepDuration; in ISDS_getSleepDuration()
4319 int8_t ISDS_setWakeUpDuration(WE_sensorInterface_t* sensorInterface, uint8_t duration) in ISDS_setWakeUpDuration() argument
4328 wakeUpDur.wakeUpDuration = (duration & 0x03); in ISDS_setWakeUpDuration()
4339 int8_t ISDS_getWakeUpDuration(WE_sensorInterface_t* sensorInterface, uint8_t *duration) in ISDS_getWakeUpDuration() argument
4348 *duration = wakeUpDur.wakeUpDuration; in ISDS_getWakeUpDuration()
4402 int8_t ISDS_setFreeFallDuration(WE_sensorInterface_t* sensorInterface, uint8_t duration) in ISDS_setFreeFallDuration() argument
4416 freeFall.freeFallDurationLSB = (uint8_t) (duration & 0x1F); in ISDS_setFreeFallDuration()
[all …]
/hal_wurthelektronik-latest/sensors/WeSensorsSDK/WSEN_ITDS_2533020201601_hal/
DWSEN_ITDS_2533020201601_hal.h880 int8_t ITDS_setWakeUpDuration(WE_sensorInterface_t* sensorInterface, uint8_t duration);
881 int8_t ITDS_getWakeUpDuration(WE_sensorInterface_t* sensorInterface, uint8_t *duration);
884 int8_t ITDS_setSleepDuration(WE_sensorInterface_t* sensorInterface, uint8_t duration);
885 int8_t ITDS_getSleepDuration(WE_sensorInterface_t* sensorInterface, uint8_t *duration);
DWSEN_ITDS_2533020201601_hal.c3144 int8_t ITDS_setWakeUpDuration(WE_sensorInterface_t* sensorInterface, uint8_t duration) in ITDS_setWakeUpDuration() argument
3153 wakeUpDuration.wakeUpDuration = duration; in ITDS_setWakeUpDuration()
3164 int8_t ITDS_getWakeUpDuration(WE_sensorInterface_t* sensorInterface, uint8_t *duration) in ITDS_getWakeUpDuration() argument
3173 *duration = wakeUpDuration.wakeUpDuration; in ITDS_getWakeUpDuration()
3184 int8_t ITDS_setSleepDuration(WE_sensorInterface_t* sensorInterface, uint8_t duration) in ITDS_setSleepDuration() argument
3193 wakeUpDuration.sleepDuration = duration; in ITDS_setSleepDuration()
3204 int8_t ITDS_getSleepDuration(WE_sensorInterface_t* sensorInterface, uint8_t *duration) in ITDS_getSleepDuration() argument
3213 *duration = wakeUpDuration.sleepDuration; in ITDS_getSleepDuration()