HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Macros | Functions | Variables
posix_tests.c File Reference

fatfs test utilities with user interface More...

#include "user_config.h"
#include "fatfs.h"
#include "time.h"
#include "stringsup.h"
#include "mathio.h"
#include "posix.h"
#include "posix_tests.h"

Go to the source code of this file.

Macros

#define BUFSIZE   512
 

Functions

MEMSPACE void posix_help (int full)
 
MEMSPACE int posix_tests (int argc, char *argv[])
 POSIX tests. More...
 
MEMSPACE long cat (char *name, int dopage)
 Display the contents of a file. More...
 
MEMSPACE long copy (char *from, char *to)
 Copy a file. More...
 
MEMSPACE int setpage (int count)
 
MEMSPACE int testpage (int count)
 Used to page output of functions like cat, hexdump, etc. More...
 
MEMSPACE int ls_info (char *name, int verbose)
 list one file More...
 
MEMSPACE int ls (char *name, int verbose)
 Directory listing. More...
 

Variables

static int _pagesize = 25
 Used to page output of functions like cat, hexdump, etc. More...
 

Detailed Description

fatfs test utilities with user interface

Copyright © 2014-2020 Mike Gore, All rights reserved. GPL License
See also
http://github.com/magore/hp85disk
http://github.com/magore/hp85disk/COPYRIGHT.md for specific Copyright details
You are free to use this code under the terms of GPL
please retain a copy of this notice in any code you use it in.

This is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Definition in file posix_tests.c.

Macro Definition Documentation

◆ BUFSIZE

#define BUFSIZE   512

Definition at line 43 of file posix_tests.c.

Function Documentation

◆ cat()

MEMSPACE long cat ( char *  name,
int  dopage 
)

Display the contents of a file.

Parameters
[in]namefile name.
[in]option–p page display
Returns
number of characters in file or -1 on error

Definition at line 355 of file posix_tests.c.

Referenced by posix_tests().

◆ copy()

MEMSPACE long copy ( char *  from,
char *  to 
)

Copy a file.

  • Credit: part of FatFs avr example project (C)ChaN, 2013.
    Parameters
    [in]fromsource file.
    [in]todestination file.
    Returns
    bytes written or -1 on error

Definition at line 398 of file posix_tests.c.

Referenced by posix_tests().

◆ ls()

MEMSPACE int ls ( char *  name,
int  verbose 
)

Directory listing.

Parameters
[in]pathfile name or directory
[in]option-l for detail
Returns
number of files or -1 on error

Definition at line 614 of file posix_tests.c.

Referenced by posix_tests().

◆ ls_info()

MEMSPACE int ls_info ( char *  name,
int  verbose 
)

list one file

Parameters
[in]pathfile name or directory
[in]verbose1 = detail, 0 = name only
Returns
1 on success 0 on fail

Definition at line 562 of file posix_tests.c.

Referenced by ls().

◆ posix_help()

MEMSPACE void posix_help ( int  full)

Definition at line 46 of file posix_tests.c.

Referenced by help(), and posix_tests().

◆ posix_tests()

MEMSPACE int posix_tests ( int  argc,
char *  argv[] 
)

POSIX tests.

Parameters
[in]agccont of arguments
Returns
1 The ruturn code indicates a command matched.
0 if no rules matched

Definition at line 93 of file posix_tests.c.

Referenced by user_task().

◆ setpage()

MEMSPACE int setpage ( int  count)

Definition at line 521 of file posix_tests.c.

Referenced by posix_tests().

◆ testpage()

MEMSPACE int testpage ( int  count)

Used to page output of functions like cat, hexdump, etc.

Parameters
[in]*namefile to hexdump @retrun -1 = quit, return count or 0 at new page

Definition at line 532 of file posix_tests.c.

Referenced by cat().

Variable Documentation

◆ _pagesize

int _pagesize = 25
static

Used to page output of functions like cat, hexdump, etc.

Parameters
[in]*namefile to hexdump @retrun void

Definition at line 519 of file posix_tests.c.

Referenced by setpage(), and testpage().