| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /* Copyright (c) 2012 Nordic Semiconductor. All Rights Reserved.
- *
- * The information contained herein is property of Nordic Semiconductor ASA.
- * Terms and conditions of usage are described in detail in NORDIC
- * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
- *
- * Licensees are granted free, non-transferable use of the information. NO
- * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
- * the file.
- *
- */
- #include "sensorsim.h"
- void sensorsim_init(sensorsim_state_t * p_state,
- const sensorsim_cfg_t * p_cfg)
- {
- if (p_cfg->start_at_max)
- {
- p_state->current_val = p_cfg->max;
- p_state->is_increasing = false;
- }
- else
- {
- p_state->current_val = p_cfg->min;
- p_state->is_increasing = true;
- }
- }
- uint32_t sensorsim_measure(sensorsim_state_t * p_state,
- const sensorsim_cfg_t * p_cfg)
- {
- if (p_state->is_increasing)
- {
- sensorsim_increment(p_state, p_cfg);
- }
- else
- {
- sensorsim_decrement(p_state, p_cfg);
- }
- return p_state->current_val;
- }
- void sensorsim_increment(sensorsim_state_t * p_state,
- const sensorsim_cfg_t * p_cfg)
- {
- if (p_cfg->max - p_state->current_val > p_cfg->incr)
- {
- p_state->current_val += p_cfg->incr;
- }
- else
- {
- p_state->current_val = p_cfg->max;
- p_state->is_increasing = false;
- }
- }
- void sensorsim_decrement(sensorsim_state_t * p_state,
- const sensorsim_cfg_t * p_cfg)
- {
- if (p_state->current_val - p_cfg->min > p_cfg->incr)
- {
- p_state->current_val -= p_cfg->incr;
- }
- else
- {
- p_state->current_val = p_cfg->min;
- p_state->is_increasing = true;
- }
- }
|