mirror of
https://github.com/rvtr/twl_wrapsdk.git
synced 2025-10-31 06:11:10 -04:00
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/twl_wrapsdk/trunk@96 4ee2a332-4b2b-5046-8439-1ba90f034370
27 lines
626 B
C
27 lines
626 B
C
/*
|
|
* EBS - RTFS (Real Time File Manager)
|
|
*
|
|
* Copyright Peter Van Oudenaren , 1993
|
|
* All rights reserved.
|
|
* This code may not be redistributed in source or linkable object form
|
|
* without the consent of its author.
|
|
*
|
|
* appdemo.c - Top level demo code. Initializes ertfs and calls the test shell.
|
|
*/
|
|
#include <rtfs.h>
|
|
|
|
void tst_shell(void);
|
|
|
|
void rtfs_app_entry(void) /* __fn__ */
|
|
{
|
|
|
|
/* Initialize ertfs */
|
|
if (!pc_ertfs_init())
|
|
{
|
|
RTFS_PRINT_STRING_1(USTRING_RTFSDEM_01, PRFLG_NL); /* "pc_ertfs_init failed" */
|
|
return;
|
|
}
|
|
tst_shell();
|
|
}
|
|
|