ccNOos  v0.0.0
Build Portable Microcontroller Applications!
Functions
MenuAPI.h File Reference

IMS: ccNOos, Declarations for straight C and C++ More...

#include "Application_Solution.h"
Include dependency graph for MenuAPI.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void goParsedAction (enum currentMenuAction theCurrentAction, struct SatComACSStruct *satcomacsStructPtrIn, struct uiStruct *uiStructPtrIn)
 

Detailed Description

IMS: ccNOos, Declarations for straight C and C++

Copyright 2021 InMechaSol, Inc

Licensed under the Apache License, Version 2.0(the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Notes: (.c includes .h) - for straight C or (.cpp includes .c which includes .h) - for C++ wrapped straight C Always compiled to a single compilation unit, either C or CPP, not both

Definition in file MenuAPI.h.

Function Documentation

◆ goParsedAction()

void goParsedAction ( enum currentMenuAction  theCurrentAction,
struct SatComACSStruct *  satcomacsStructPtrIn,
struct uiStruct *  uiStructPtrIn 
)

Definition at line 90 of file MenuAPI.c.

91 {
92  switch (theCurrentAction)
93  {
94  case cA_Down:uiStructPtrIn->cursorIndex++; break;
95  case cA_Up:uiStructPtrIn->cursorIndex--; break;
96  case cA_Forward: break;
97  case cA_Back: break;
98  case cA_Enter: break;
99  case cA_Status: break;
100  }
101 }