nuttx-apps/examples/smf/smf_main.c
Felipe MdeO ca11a7e093 system/smf: Port SMF .c/.h files to NuttX
This commit add state machine framework lib to the NuttX project. Also an example is added to help users understand and use this feature.

Changes: Added some files. No impact in other features are expected.

Adjust SMF macro names

Fix issues requested during MR review

update kconfig

fix ci-cd issue

Signed-off-by: Felipe Moura <moura.fmo@gmail.com>
2026-01-05 12:50:04 -05:00

127 lines
3.9 KiB
C

/****************************************************************************
* apps/examples/smf/smf_main.c
*
* SPDX-License-Identifier: Apache-2.0
*
* Copyright (c) 2024 Glenn Andrews
* State Machine example copyright (c) Miro Samek
*
* Implementation of the statechart in Figure 2.11 of
* Practical UML Statecharts in C/C++, 2nd Edition by Miro Samek
* https://www.state-machine.com/psicc2
* Used with permission of the author.
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you 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.
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <ctype.h>
#include <stdio.h>
#include <string.h>
#include "hsm_psicc2_thread.h"
/****************************************************************************
* Private Functions
****************************************************************************/
/****************************************************************************
* Name: usage
****************************************************************************/
static void usage(void)
{
printf("Usage:\n");
printf(" hsm_psicc2 start\n");
printf(" hsm_psicc2 event <A..I>\n");
printf(" hsm_psicc2 terminate\n");
}
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* Name: main
****************************************************************************/
int main(int argc, char *argv[])
{
if (argc < 2)
{
usage();
return 1;
}
if (strcmp(argv[1], "start") == 0)
{
printf("State Machine Framework Demo\n");
printf("See PSiCC2 Fig 2.11 for the statechart\n");
printf("https://www.state-machine.com/psicc2\n\n");
return hsm_psicc2_thread_start();
}
if (strcmp(argv[1], "terminate") == 0)
{
return hsm_psicc2_post_event(EVENT_TERMINATE);
}
if (strcmp(argv[1], "event") == 0)
{
int c;
if (argc < 3 || argv[2] == NULL || argv[2][0] == '\0')
{
usage();
return 1;
}
c = toupper((unsigned char)argv[2][0]);
switch (c)
{
case 'A':
return hsm_psicc2_post_event(EVENT_A);
case 'B':
return hsm_psicc2_post_event(EVENT_B);
case 'C':
return hsm_psicc2_post_event(EVENT_C);
case 'D':
return hsm_psicc2_post_event(EVENT_D);
case 'E':
return hsm_psicc2_post_event(EVENT_E);
case 'F':
return hsm_psicc2_post_event(EVENT_F);
case 'G':
return hsm_psicc2_post_event(EVENT_G);
case 'H':
return hsm_psicc2_post_event(EVENT_H);
case 'I':
return hsm_psicc2_post_event(EVENT_I);
default:
printf("Invalid event '%c'\n", c);
return 1;
}
}
usage();
return 1;
}