This is a repository for all my programs or modified programs.

Committer:
mturner5
Date:
Sun Sep 11 23:48:09 2016 +0000
Revision:
0:72480818e4a9
Made delays for the LEDS and button presses

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mturner5 0:72480818e4a9 1 /* mbed Microcontroller Library
mturner5 0:72480818e4a9 2 * Copyright (c) 2006-2013 ARM Limited
mturner5 0:72480818e4a9 3 *
mturner5 0:72480818e4a9 4 * Licensed under the Apache License, Version 2.0 (the "License");
mturner5 0:72480818e4a9 5 * you may not use this file except in compliance with the License.
mturner5 0:72480818e4a9 6 * You may obtain a copy of the License at
mturner5 0:72480818e4a9 7 *
mturner5 0:72480818e4a9 8 * http://www.apache.org/licenses/LICENSE-2.0
mturner5 0:72480818e4a9 9 *
mturner5 0:72480818e4a9 10 * Unless required by applicable law or agreed to in writing, software
mturner5 0:72480818e4a9 11 * distributed under the License is distributed on an "AS IS" BASIS,
mturner5 0:72480818e4a9 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
mturner5 0:72480818e4a9 13 * See the License for the specific language governing permissions and
mturner5 0:72480818e4a9 14 * limitations under the License.
mturner5 0:72480818e4a9 15 */
mturner5 0:72480818e4a9 16 #ifndef MBED_FILEBASE_H
mturner5 0:72480818e4a9 17 #define MBED_FILEBASE_H
mturner5 0:72480818e4a9 18
mturner5 0:72480818e4a9 19 typedef int FILEHANDLE;
mturner5 0:72480818e4a9 20
mturner5 0:72480818e4a9 21 #include <stdio.h>
mturner5 0:72480818e4a9 22
mturner5 0:72480818e4a9 23 #if defined(__ARMCC_VERSION) || defined(__ICCARM__)
mturner5 0:72480818e4a9 24 # define O_RDONLY 0
mturner5 0:72480818e4a9 25 # define O_WRONLY 1
mturner5 0:72480818e4a9 26 # define O_RDWR 2
mturner5 0:72480818e4a9 27 # define O_CREAT 0x0200
mturner5 0:72480818e4a9 28 # define O_TRUNC 0x0400
mturner5 0:72480818e4a9 29 # define O_APPEND 0x0008
mturner5 0:72480818e4a9 30
mturner5 0:72480818e4a9 31 # define NAME_MAX 255
mturner5 0:72480818e4a9 32
mturner5 0:72480818e4a9 33 typedef int mode_t;
mturner5 0:72480818e4a9 34 typedef int ssize_t;
mturner5 0:72480818e4a9 35 typedef long off_t;
mturner5 0:72480818e4a9 36
mturner5 0:72480818e4a9 37 #else
mturner5 0:72480818e4a9 38 # include <sys/fcntl.h>
mturner5 0:72480818e4a9 39 # include <sys/types.h>
mturner5 0:72480818e4a9 40 # include <sys/syslimits.h>
mturner5 0:72480818e4a9 41 #endif
mturner5 0:72480818e4a9 42
mturner5 0:72480818e4a9 43 #include "platform.h"
mturner5 0:72480818e4a9 44
mturner5 0:72480818e4a9 45 namespace mbed {
mturner5 0:72480818e4a9 46
mturner5 0:72480818e4a9 47 typedef enum {
mturner5 0:72480818e4a9 48 FilePathType,
mturner5 0:72480818e4a9 49 FileSystemPathType
mturner5 0:72480818e4a9 50 } PathType;
mturner5 0:72480818e4a9 51
mturner5 0:72480818e4a9 52 class FileBase {
mturner5 0:72480818e4a9 53 public:
mturner5 0:72480818e4a9 54 FileBase(const char *name, PathType t);
mturner5 0:72480818e4a9 55
mturner5 0:72480818e4a9 56 virtual ~FileBase();
mturner5 0:72480818e4a9 57
mturner5 0:72480818e4a9 58 const char* getName(void);
mturner5 0:72480818e4a9 59 PathType getPathType(void);
mturner5 0:72480818e4a9 60
mturner5 0:72480818e4a9 61 static FileBase *lookup(const char *name, unsigned int len);
mturner5 0:72480818e4a9 62
mturner5 0:72480818e4a9 63 static FileBase *get(int n);
mturner5 0:72480818e4a9 64
mturner5 0:72480818e4a9 65 protected:
mturner5 0:72480818e4a9 66 static FileBase *_head;
mturner5 0:72480818e4a9 67
mturner5 0:72480818e4a9 68 FileBase *_next;
mturner5 0:72480818e4a9 69 const char *_name;
mturner5 0:72480818e4a9 70 PathType _path_type;
mturner5 0:72480818e4a9 71
mturner5 0:72480818e4a9 72 /* disallow copy constructor and assignment operators */
mturner5 0:72480818e4a9 73 private:
mturner5 0:72480818e4a9 74 FileBase(const FileBase&);
mturner5 0:72480818e4a9 75 FileBase & operator = (const FileBase&);
mturner5 0:72480818e4a9 76 };
mturner5 0:72480818e4a9 77
mturner5 0:72480818e4a9 78 } // namespace mbed
mturner5 0:72480818e4a9 79
mturner5 0:72480818e4a9 80 #endif