Loading...
 

SW4STM32 and SW4Linux fully supports the STM32MP1 asymmetric multicore Cortex/A7+M4 MPUs

   With System Workbench for Linux, Embedded Linux on the STM32MP1 family of MPUs from ST was never as simple to build and maintain, even for newcomers in the Linux world. And, if you install System Workbench for Linux in System Workbench for STM32 you can seamlessly develop and debug asymmetric applications running partly on Linux, partly on the Cortex-M4.
You can get more information from the ac6-tools website and download (registration required) various documents highlighting:

System Workbench for STM32


You are viewing a reply to No break at the end of case  

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

{CODE(colors="language")} and {CODE}

For example:

{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:

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