Fixed error from previous commit, renamed chDbgSuspendTrace to chTraceSuspend
This commit is contained in:
parent
a49fb58fc0
commit
95919e3d57
|
@ -16,7 +16,6 @@
|
|||
|
||||
#include "hal.h"
|
||||
#include "shcfg.h"
|
||||
#include "chtrace.h"
|
||||
|
||||
|
||||
const SerialConfig shell_serial_cfg = {
|
||||
|
@ -63,7 +62,7 @@ int main(void)
|
|||
*/
|
||||
OnboardLED_Off();
|
||||
|
||||
chDbgSuspendTrace(CH_DBG_TRACE_MASK_SWITCH);
|
||||
chTraceSuspend(CH_DBG_TRACE_MASK_SWITCH);
|
||||
|
||||
/*
|
||||
* Activates the serial driver.
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
*/
|
||||
#include "hal.h"
|
||||
#include "usbcfg.h"
|
||||
#include "chtrace.h"
|
||||
|
||||
/*
|
||||
* Onboard LED blinker thread, times are in milliseconds.
|
||||
|
@ -56,7 +55,7 @@ int main(void)
|
|||
*/
|
||||
OnboardLED_Off();
|
||||
|
||||
chDbgSuspendTrace(CH_DBG_TRACE_MASK_SWITCH);
|
||||
chTraceSuspend(CH_DBG_TRACE_MASK_SWITCH);
|
||||
/*
|
||||
* Initializes a USB HID driver.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue