Create a switch case in simulink and generate a .c file

2 vues (au cours des 30 derniers jours)
raj sakthi
raj sakthi le 7 Mar 2024
u8 App_Lin_GetFullBrightnessLevel(u8 level)
{
  u8 l_Brightness = LIGHT_OFF;
  switch(level)
  {
    case 0u:{
      l_Brightness = FULL_BRIGHTNESS_LEVEL0;
      break;
    }
    case 1u:{
      l_Brightness = FULL_BRIGHTNESS_LEVEL1;
      break;
    }
    case 2u:{
      l_Brightness = FULL_BRIGHTNESS_LEVEL2;;
      break;
    }
    case 3u: {
      l_Brightness = FULL_BRIGHTNESS_LEVEL3;
      break;
    }
    case 4u: {
      l_Brightness = FULL_BRIGHTNESS_LEVEL4;
      break;
    }
    case 5u: {
      l_Brightness = FULL_BRIGHTNESS_LEVEL5;
      break;
    }
    case 6u:{
      l_Brightness = FULL_BRIGHTNESS_LEVEL6;
      break;
    }
    default:{
      l_Brightness = FULL_BRIGHTNESS_LEVEL0;
      break;
    }
  }
  return l_Brightness;
}
I just want like this

Réponses (1)

Mark McBroom
Mark McBroom le 14 Mar 2024
You can do this in Simulink with a multi-port switch block and then generate code with Simulink coder or Embedded Coder.

Catégories

En savoir plus sur Simulink Coder dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by