GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Bsp_UserSpace_Api_h_
2#define Bsp_UserSpace_Api_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file
14
15
16 This BSP is a null/empty BSP to be used when compiling applications that
17 are dependent on "Bsp/Api.h", by the compile target is a desktop OS running
18 in user space.
19
20
21 DO NOT include this file directly! Instead include the generic BSP
22 interface - src/Bsp/Api.h - and then configure your project's
23 'colony_map.h' to include THIS file.
24
25*----------------------------------------------------------------------------*/
26
27#include <stdint.h>
28
29
30// Start C++
31#ifdef __cplusplus
32extern "C" {
33#endif
34
35
36/*---------------------------------------------------------------------------*/
37
38/// Generic API - map to a single/global mutex to simulate EI/DI
40
41/// Generic API - map to a single/global mutex to simulate EI/DI
43
44/// Generic API - map to a single/global mutex to simulate EI/DI
46
47/// Generic API - map to a single/global mutex to simulate EI/DI
49
50/// Generic API -->use a empty function to simulate a nop
51void Bsp_Api_nop_MAP(void);
52
53
54/// Generic API -->do nothing
55#define Bsp_Api_turnOn_debug1_MAP()
56
57/// Generic API -->do nothing
58#define Bsp_Api_turnOff_debug1_MAP()
59
60/// Generic API -->do nothing
61#define Bsp_Api_toggle_debug1_MAP()
62
63
64/// Generic API -->do nothing
65#define Bsp_Api_turnOn_debug2_MAP()
66
67/// Generic API -->do nothing
68#define Bsp_Api_turnOff_debug2_MAP()
69
70/// Generic API -->do nothing
71#define Bsp_Api_toggle_debug2_MAP()
72
73
74// End C++
75#ifdef __cplusplus
76};
77#endif
78
79
80#endif
void Bsp_Api_popIrqs_MAP(void)
Generic API - map to a single/global mutex to simulate EI/DI.
void Bsp_Api_pushAndDisableIrqs_MAP(void)
Generic API - map to a single/global mutex to simulate EI/DI.
void Bsp_Api_enableIrqs_MAP(void)
Generic API - map to a single/global mutex to simulate EI/DI.
void Bsp_Api_nop_MAP(void)
Generic API -->use a empty function to simulate a nop.
void Bsp_Api_disableIrqs_MAP(void)
Generic API - map to a single/global mutex to simulate EI/DI.