⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 io.c

📁 AUTOMGEN runtime is an open source royalty free runtime for open PLCs. By using this runtime, any ta
💻 C
字号:
// AUTOMGEN interpretor runtime	 - I/O
// Target specific file : physicals inputs/outputs
// (C) 2003-2008 IRAI

#define BYTE unsigned char
#define WORD unsigned short
#define DWORD unsigned long

#include "core.h"

// Initialize I/I
int initio(void)
{
return 0;
}

// Close I/O
int uninitio(void)
{
return 0;
}

// Read inputs
int readi(struct _a7int *a7int)
{
return 0;
}

// Write outputs
int writeo(struct _a7int *a7int)
{
return 0;
}

⌨️ 快捷键说明

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