main.c 我就是我 2022-08-27 07:51 111阅读 0赞 /\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\* \* C H A M E L E O N S. D. K. \* \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\* \* $Archive:: /Chameleon.sdk/src/examples/hello/main.c $ \* $Date:: 18/02/02 11:53 $ \* $Revision:: 6 $ \*-----------------------------------------------------------------------------\* \* This file is part of the Chameleon Software Development Kit \* \* \* \* Copyright (C) 2001-2002 Soundart \* \* www.soundart-hot.com \* \* support@soundart-hot.com \* \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*/ \#include <stdlib.h>\#include <stdio.h>\#include <rtems.h>\#include <chameleon.h> /\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*/\#define WORKSPACE\_SIZE 128\*1024rtems\_unsigned32 rtems\_workspace\_size = WORKSPACE\_SIZE;rtems\_unsigned32 rtems\_workspace\_start\[WORKSPACE\_SIZE\];/\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*/ rtems\_task rtems\_main(rtems\_task\_argument ignored)\{ int panel; TRACE("Hello World/n"); panel = panel\_init(); if (panel) \{ panel\_out\_lcd\_print(panel, 0, 0, "HELLO "); panel\_out\_lcd\_print(panel, 1, 0, "WORLD "); \} rtems\_task\_delete(RTEMS\_SELF);\}
还没有评论,来说两句吧...