Compare commits
No commits in common. "c6dd4e735c98767bc473f950e13336269cc8a8aa" and "26f8e7ae99fdf881e6fe51280164a23176c47cfd" have entirely different histories.
c6dd4e735c
...
26f8e7ae99
@ -42,6 +42,7 @@ int main()
|
|||||||
setup_nvic_priorities();
|
setup_nvic_priorities();
|
||||||
systick_setup();
|
systick_setup();
|
||||||
|
|
||||||
|
//setup_dma(&adc_results, 3);
|
||||||
adc_pt1000_setup_meas();
|
adc_pt1000_setup_meas();
|
||||||
|
|
||||||
digio_setup_default_all();
|
digio_setup_default_all();
|
||||||
|
@ -28,8 +28,7 @@ static shellmatta_retCode_t shell_cmd_ver(const shellmatta_handle_t handle,
|
|||||||
(void)arguments;
|
(void)arguments;
|
||||||
(void)length;
|
(void)length;
|
||||||
|
|
||||||
shellmatta_printf(handle, "Reflow Oven Controller Firmware " xstr(GIT_VER) "\r\n"
|
shellmatta_printf(handle, "Reflow Oven Controller Firmware %s", xstr(GIT_VER));
|
||||||
"Compiled: " __DATE__ " at " __TIME__);
|
|
||||||
|
|
||||||
return SHELLMATTA_OK;
|
return SHELLMATTA_OK;
|
||||||
}
|
}
|
||||||
@ -207,7 +206,7 @@ shellmatta_handle_t shell_init(void)
|
|||||||
shellmatta_retCode_t ret;
|
shellmatta_retCode_t ret;
|
||||||
|
|
||||||
ret = shellmatta_doInit(&shell, &handle, shell_buffer, sizeof(shell_buffer), history_buffer, sizeof(history_buffer),
|
ret = shellmatta_doInit(&shell, &handle, shell_buffer, sizeof(shell_buffer), history_buffer, sizeof(history_buffer),
|
||||||
"\e[1;32mEnter command:\e[m\r\n", cmd, write_shell_callback);
|
"Enter command:\r\n", cmd, write_shell_callback);
|
||||||
if (ret != SHELLMATTA_OK)
|
if (ret != SHELLMATTA_OK)
|
||||||
handle = NULL;
|
handle = NULL;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user