Root/
| Source at commit a11670bb7bb6e506db72463fea6738100b22c9a7 created 11 years 17 days ago. By Werner Almesberger, tornado/fw/sim/alg.c: accept data from standard input; fix "process" | |
|---|---|
| 1 | /* |
| 2 | * fw/flash.h - Flash interface |
| 3 | * |
| 4 | * Written 2012 by Werner Almesberger |
| 5 | * Copyright 2012 Werner Almesberger |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | */ |
| 12 | |
| 13 | #ifndef FLASH_H |
| 14 | #define FLASH_H |
| 15 | |
| 16 | #include <stdint.h> |
| 17 | |
| 18 | |
| 19 | void flash_start(void); |
| 20 | int flash_can_write(uint16_t size); |
| 21 | void flash_write(const uint8_t *buf, uint16_t size); |
| 22 | void flash_end_write(void); |
| 23 | |
| 24 | #endif /* !FLASH_H */ |
| 25 | |
Branches:
master
tornado-v1
