Loading...
 
Skip to main content

System Workbench for STM32


No break at the end of case

France

Hi Richard,

when you want to post code on a forum, you must warn the forum software that it is code; on the OpenSTM32 forum you just have to bracket your code between

Copy to clipboard
{CODE(colors="language")} and {CODE}

For example:

Copy to clipboard
{CODE(colors="clike" ln="1")} case USB_REQ_TYPE_STANDARD: switch (req->bRequest) { case USB_REQ_GET_INTERFACE : USBD_CtlSendData (pdev, &ifalt, 1); break; case USB_REQ_SET_INTERFACE : break; } default: break; {CODE}

Will produce:

Copy to clipboard
case USB_REQ_TYPE_STANDARD: switch (req->bRequest) { case USB_REQ_GET_INTERFACE : USBD_CtlSendData (pdev, &ifalt, 1); break; case USB_REQ_SET_INTERFACE : break; } default: break;

Note that currently the C syntax coloring is not yet working but it will in the future...

I admit the syntax may not be the most intuitive (especially you sould not forget the parentheses in the opening tag, even if you don't provide any parameters) but it is quite simple anyway.

Bernard