|
|
|
|
150
|
pos += snprintf(menu->buff + pos, MENU_MAX_LEN - pos,
|
150
|
pos += snprintf(menu->buff + pos, MENU_MAX_LEN - pos,
|
151
|
"%s\n", wf_step_str(state.step));
|
151
|
"%s\n", wf_step_str(state.step));
|
152
|
pos += snprintf(menu->buff + pos, MENU_MAX_LEN - pos,
|
152
|
pos += snprintf(menu->buff + pos, MENU_MAX_LEN - pos,
|
153
|
- "%.0f -> %.0f -> %.0f",
|
|
|
|
|
153
|
+ "%.0f -> %.1f -> %.0f",
|
154
|
state.start_val / 1000.0f,
|
154
|
state.start_val / 1000.0f,
|
155
|
state.curr_val / 1000.0f,
|
155
|
state.curr_val / 1000.0f,
|
156
|
state.step->val / 1000.0f);
|
156
|
state.step->val / 1000.0f);
|