PokittoLib with changes to lcd refresh etc.

Dependents:   Pokittris

Fork of Pokitto by Pokitto Community Team

This is a fork by user @Spinal, and is used in Pokittris for testing. Do not import this to your own program.

Committer:
spinal
Date:
Sun Oct 15 18:03:02 2017 +0000
Revision:
11:02ad9c807a21
Parent:
5:7e5c566b1760
fixed 4color refreshRegion code

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Pokitto 5:7e5c566b1760 1 /* mbed Microcontroller Library
Pokitto 5:7e5c566b1760 2 * Copyright (c) 2006-2013 ARM Limited
Pokitto 5:7e5c566b1760 3 *
Pokitto 5:7e5c566b1760 4 * Licensed under the Apache License, Version 2.0 (the "License");
Pokitto 5:7e5c566b1760 5 * you may not use this file except in compliance with the License.
Pokitto 5:7e5c566b1760 6 * You may obtain a copy of the License at
Pokitto 5:7e5c566b1760 7 *
Pokitto 5:7e5c566b1760 8 * http://www.apache.org/licenses/LICENSE-2.0
Pokitto 5:7e5c566b1760 9 *
Pokitto 5:7e5c566b1760 10 * Unless required by applicable law or agreed to in writing, software
Pokitto 5:7e5c566b1760 11 * distributed under the License is distributed on an "AS IS" BASIS,
Pokitto 5:7e5c566b1760 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Pokitto 5:7e5c566b1760 13 * See the License for the specific language governing permissions and
Pokitto 5:7e5c566b1760 14 * limitations under the License.
Pokitto 5:7e5c566b1760 15 */
Pokitto 5:7e5c566b1760 16 #ifndef MBED_LOCALFILESYSTEM_H
Pokitto 5:7e5c566b1760 17 #define MBED_LOCALFILESYSTEM_H
Pokitto 5:7e5c566b1760 18
Pokitto 5:7e5c566b1760 19 #include "platform.h"
Pokitto 5:7e5c566b1760 20
Pokitto 5:7e5c566b1760 21 #if DEVICE_LOCALFILESYSTEM
Pokitto 5:7e5c566b1760 22
Pokitto 5:7e5c566b1760 23 #include "FileSystemLike.h"
Pokitto 5:7e5c566b1760 24
Pokitto 5:7e5c566b1760 25 namespace mbed {
Pokitto 5:7e5c566b1760 26
Pokitto 5:7e5c566b1760 27 FILEHANDLE local_file_open(const char* name, int flags);
Pokitto 5:7e5c566b1760 28
Pokitto 5:7e5c566b1760 29 class LocalFileHandle : public FileHandle {
Pokitto 5:7e5c566b1760 30
Pokitto 5:7e5c566b1760 31 public:
Pokitto 5:7e5c566b1760 32 LocalFileHandle(FILEHANDLE fh);
Pokitto 5:7e5c566b1760 33
Pokitto 5:7e5c566b1760 34 virtual int close();
Pokitto 5:7e5c566b1760 35
Pokitto 5:7e5c566b1760 36 virtual ssize_t write(const void *buffer, size_t length);
Pokitto 5:7e5c566b1760 37
Pokitto 5:7e5c566b1760 38 virtual ssize_t read(void *buffer, size_t length);
Pokitto 5:7e5c566b1760 39
Pokitto 5:7e5c566b1760 40 virtual int isatty();
Pokitto 5:7e5c566b1760 41
Pokitto 5:7e5c566b1760 42 virtual off_t lseek(off_t position, int whence);
Pokitto 5:7e5c566b1760 43
Pokitto 5:7e5c566b1760 44 virtual int fsync();
Pokitto 5:7e5c566b1760 45
Pokitto 5:7e5c566b1760 46 virtual off_t flen();
Pokitto 5:7e5c566b1760 47
Pokitto 5:7e5c566b1760 48 protected:
Pokitto 5:7e5c566b1760 49 FILEHANDLE _fh;
Pokitto 5:7e5c566b1760 50 int pos;
Pokitto 5:7e5c566b1760 51 };
Pokitto 5:7e5c566b1760 52
Pokitto 5:7e5c566b1760 53 /** A filesystem for accessing the local mbed Microcontroller USB disk drive
Pokitto 5:7e5c566b1760 54 *
Pokitto 5:7e5c566b1760 55 * This allows programs to read and write files on the same disk drive that is used to program the
Pokitto 5:7e5c566b1760 56 * mbed Microcontroller. Once created, the standard C file access functions are used to open,
Pokitto 5:7e5c566b1760 57 * read and write files.
Pokitto 5:7e5c566b1760 58 *
Pokitto 5:7e5c566b1760 59 * Example:
Pokitto 5:7e5c566b1760 60 * @code
Pokitto 5:7e5c566b1760 61 * #include "mbed.h"
Pokitto 5:7e5c566b1760 62 *
Pokitto 5:7e5c566b1760 63 * LocalFileSystem local("local"); // Create the local filesystem under the name "local"
Pokitto 5:7e5c566b1760 64 *
Pokitto 5:7e5c566b1760 65 * int main() {
Pokitto 5:7e5c566b1760 66 * FILE *fp = fopen("/local/out.txt", "w"); // Open "out.txt" on the local file system for writing
Pokitto 5:7e5c566b1760 67 * fprintf(fp, "Hello World!");
Pokitto 5:7e5c566b1760 68 * fclose(fp);
Pokitto 5:7e5c566b1760 69 * remove("/local/out.txt"); // Removes the file "out.txt" from the local file system
Pokitto 5:7e5c566b1760 70 *
Pokitto 5:7e5c566b1760 71 * DIR *d = opendir("/local"); // Opens the root directory of the local file system
Pokitto 5:7e5c566b1760 72 * struct dirent *p;
Pokitto 5:7e5c566b1760 73 * while((p = readdir(d)) != NULL) { // Print the names of the files in the local file system
Pokitto 5:7e5c566b1760 74 * printf("%s\n", p->d_name); // to stdout.
Pokitto 5:7e5c566b1760 75 * }
Pokitto 5:7e5c566b1760 76 * closedir(d);
Pokitto 5:7e5c566b1760 77 * }
Pokitto 5:7e5c566b1760 78 * @endcode
Pokitto 5:7e5c566b1760 79 *
Pokitto 5:7e5c566b1760 80 * @note
Pokitto 5:7e5c566b1760 81 * If the microcontroller program makes an access to the local drive, it will be marked as "removed"
Pokitto 5:7e5c566b1760 82 * on the Host computer. This means it is no longer accessible from the Host Computer.
Pokitto 5:7e5c566b1760 83 *
Pokitto 5:7e5c566b1760 84 * The drive will only re-appear when the microcontroller program exists. Note that if the program does
Pokitto 5:7e5c566b1760 85 * not exit, you will need to hold down reset on the mbed Microcontroller to be able to see the drive again!
Pokitto 5:7e5c566b1760 86 */
Pokitto 5:7e5c566b1760 87 class LocalFileSystem : public FileSystemLike {
Pokitto 5:7e5c566b1760 88
Pokitto 5:7e5c566b1760 89 public:
Pokitto 5:7e5c566b1760 90 LocalFileSystem(const char* n) : FileSystemLike(n) {
Pokitto 5:7e5c566b1760 91
Pokitto 5:7e5c566b1760 92 }
Pokitto 5:7e5c566b1760 93
Pokitto 5:7e5c566b1760 94 virtual FileHandle *open(const char* name, int flags);
Pokitto 5:7e5c566b1760 95 virtual int remove(const char *filename);
Pokitto 5:7e5c566b1760 96 virtual DirHandle *opendir(const char *name);
Pokitto 5:7e5c566b1760 97 };
Pokitto 5:7e5c566b1760 98
Pokitto 5:7e5c566b1760 99 } // namespace mbed
Pokitto 5:7e5c566b1760 100
Pokitto 5:7e5c566b1760 101 #endif
Pokitto 5:7e5c566b1760 102
Pokitto 5:7e5c566b1760 103 #endif