We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e0dc2f commit 47462b2Copy full SHA for 47462b2
targets/ChibiOS/_common/WireProtocol_ReceiverThread.c
@@ -19,6 +19,8 @@ __attribute__((noreturn)) void ReceiverThread(void const *argument)
19
{
20
(void)argument;
21
22
+ osDelay(500);
23
+
24
WP_Message_PrepareReception();
25
26
// loop until thread receives a request to terminate
@@ -51,12 +53,7 @@ __attribute__((noreturn)) void ReceiverThread(void const *argument)
51
53
// this function never returns
52
54
}
55
-__nfweak void WP_Message_PrepareReception_Target()
-{
56
- // empty on purpose, to be implemented by target if needed
57
-}
58
-
59
void WP_Message_PrepareReception_Platform()
60
61
- WP_Message_PrepareReception_Target();
+ // empty on purpose, nothing to configure
62
0 commit comments