Loading...
 

Zephyr project on STM32

   Zephyr Workbench, a VSCode extension to manage Zephyr on STM32.
It enables users to easily create, develop, and debug Zephyr applications.
Main features:
  • Install host dependencies.
  • Import toolchain and SDK.
  • Create, configure, build and manage apps.
  • Debug STM32.
You can directly download it from the VSCode marketplace
For more details, visit the Zephyr Workbench

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