minor documentation and extra tabs removal fixes

This commit is contained in:
Bander Ajba 2017-02-28 09:34:13 +03:00
parent 12a6cb0fbf
commit 0e723091f9
2 changed files with 3 additions and 3 deletions

View File

@ -36,8 +36,8 @@ void hal_temp_init(void) {
} }
int32_t hal_temp_read(void) { int32_t hal_temp_read(void) {
int32_t volatile temp; int32_t volatile temp;
hal_temp_init(); hal_temp_init();
NRF_TEMP->TASKS_START = 1; // Start the temperature measurement. NRF_TEMP->TASKS_START = 1; // Start the temperature measurement.

View File

@ -46,7 +46,7 @@ STATIC void machine_temp_print(const mp_print_t *print, mp_obj_t o, mp_print_kin
(void)self; (void)self;
mp_printf(print, "Temp.read()"); mp_printf(print, "Temp");
} }
/******************************************************************************/ /******************************************************************************/