From f33d39c832959e1fb890433467f6b9bb29850df5 Mon Sep 17 00:00:00 2001 From: isiora Date: Wed, 7 Mar 2018 11:44:49 +0000 Subject: New tssi interface. git-svn-id: https://svn.code.sf.net/p/chibios/svn2/trunk@11608 110e8d01-0319-4d1e-a829-52ad28d1bb01 --- .../ATSAMA5D2/RT-SAMA5D2-XPLAINED-NSEC/smcclient.h | 88 ---------------------- 1 file changed, 88 deletions(-) delete mode 100644 demos/ATSAMA5D2/RT-SAMA5D2-XPLAINED-NSEC/smcclient.h (limited to 'demos/ATSAMA5D2/RT-SAMA5D2-XPLAINED-NSEC/smcclient.h') diff --git a/demos/ATSAMA5D2/RT-SAMA5D2-XPLAINED-NSEC/smcclient.h b/demos/ATSAMA5D2/RT-SAMA5D2-XPLAINED-NSEC/smcclient.h deleted file mode 100644 index 06a5e3631..000000000 --- a/demos/ATSAMA5D2/RT-SAMA5D2-XPLAINED-NSEC/smcclient.h +++ /dev/null @@ -1,88 +0,0 @@ -/* - ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio. - - This file is part of ChibiOS. - - ChibiOS is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. - - ChibiOS is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -/** - * @file smcclient.h - * @brief smc Module macros and structures. - * - * @addtogroup SMC - * @{ - */ - -#ifndef SMCCLIENT_H -#define SMCCLIENT_H - -/*===========================================================================*/ -/* Module constants. */ -/*===========================================================================*/ -/* - * Service registry errors - */ -#define SMC_SVC_OK MSG_OK /* No error */ -#define SMC_SVC_INTR (msg_t)-1 /* Service interrupted */ -#define SMC_SVC_NOENT (msg_t)-2 /* No existent service */ -#define SMC_SVC_INVALID (msg_t)-3 /* Invalid service parameter(s) */ -#define SMC_SVC_BADH (msg_t)-4 /* Invalid service handle */ -#define SMC_SVC_EXIST (msg_t)-5 /* Service already exists */ - -/* - * Special service handles - */ -#define SMC_HND_TRAMP ((smc_service_t *)0) /* Trampoline */ -#define SMC_HND_DISCOVERY ((smc_service_t *)1) /* Discovery */ -#define SMC_HND_REENTER ((smc_service_t *)2) /* Reentering a service */ - -/*===========================================================================*/ -/* Module pre-compile time settings. */ -/*===========================================================================*/ - -/*===========================================================================*/ -/* Derived constants and error checks. */ -/*===========================================================================*/ - -/*===========================================================================*/ -/* Module data structures and types. */ -/*===========================================================================*/ -typedef uint8_t * smc_params_area_t; -typedef void * smc_service_t; - -/*===========================================================================*/ -/* Module macros. */ -/*===========================================================================*/ - -/*===========================================================================*/ -/* External declarations. */ -/*===========================================================================*/ - -#ifdef __cplusplus -extern "C" { -#endif -msg_t smcInvokeService(smc_service_t handle, smc_params_area_t data, - size_t size); -#ifdef __cplusplus -} -#endif - -/*===========================================================================*/ -/* Module inline functions. */ -/*===========================================================================*/ - -#endif /* SMCCLIENT_H */ - -/** @} */ -- cgit v1.2.3