Skip to content

Commit

Permalink
Add missing newline at end of "get" output.
Browse files Browse the repository at this point in the history
  • Loading branch information
catphish committed Oct 18, 2023
1 parent 6cb0a41 commit 8fc317b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configurator/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void get_all(void) {
value = get_setting(USB_SETTING_CAT_BATT, USB_SETTING_BATT_ADC2_COEFFICIENT);
raw_value = get_setting(USB_SETTING_CAT_BATT, USB_VALUE_ADC2_RAW);
printf(" ADC2 coeff: %d (current raw value: %d)\n", value, raw_value);
printf("(raw value * coefficient / 1000 will give the mV/mA figure)");
printf("(raw value * coefficient / 1000 will give the mV/mA figure)\n");
}

int main(int argc, char *argv[])
Expand Down

0 comments on commit 8fc317b

Please sign in to comment.