globals.c

来自「关于XD256的应用实例,用于汽车电子开发之用」· C语言 代码 · 共 25 行

C
25
字号
/*****************************************************
 globals.c - definition of shared variables 
 -----------------------------------------------------
   Copyright (c) Metrowerks, Basel, Switzerland
               All rights reserved
 -----------------------------------------------------
 These variables that are allocated in HCS12 space but 
 can be refered by the XGATE too. 
               
Note: pointers defined in the shared RAM are unique to 
      the core and cannot be shared. Define in this 
      module all the variables that contain addresses 
      into the XGATE address space.
 *****************************************************/


#include "Globals.h"

#pragma DATA_SEG  SHARED_DATA

/* operation modes */
uchar CalibrationPhase;
uchar CarSimulation;
uchar BMPTfrByXG;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?