devices.c

来自「VRTX 商用嵌入式实时操作系统」· C语言 代码 · 共 41 行

C
41
字号
/***************************************************************************
*
*               Copyright (c) 1995 MICROTEC RESEARCH INC.
*
*       All rights reserved. MICROTEC's source code is an unpublished
*       work and the use of a copyright notice does not imply otherwise.
*       This source code contains confidential, trade secret material of
*       MICROTEC. Any attempt or participation in deciphering, decoding,
*       reverse engineering or in any way altering the source code is
*       strictly prohibited, unless the prior written consent of
*       MICROTEC is obtained.
*
*
*       Module Name:            devices.tpl
*
*       Identification:          1.4 devices.tpl
*
*       Date:                   4/25/94  14:52:36
*
****************************************************************************
*/




#include <boot.h>

extern logio_method_t logio_board_method;
extern logio_method_t logio_screen_method;
extern logio_method_t logio_timer_1_method;
extern logio_method_t logio_serial_2_method;


const boot_device_t boot_device_table[] = {
       "DEV_BOARD",      &logio_board_method,
       "DEV_SCREEN",      &logio_screen_method,
       "DEV_TIMER_1",      &logio_timer_1_method,
       "DEV_SERIAL_2",      &logio_serial_2_method,
  0,     0
};

⌨️ 快捷键说明

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