1234567891011121314151617181920212223242526272829 |
- /*
- * Copyright © 2014 Kosma Moczek <kosma@cloudyourcar.com>
- * This program is free software. It comes without any warranty, to the extent
- * permitted by applicable law. You can redistribute it and/or modify it under
- * the terms of the Do What The Fuck You Want To Public License, Version 2, as
- * published by Sam Hocevar. See the COPYING file for more details.
- */
- #if USE_LIB_RINGFS_W25Q==1
- #ifndef LIB_RINGFS_W25Q_H
- #define LIB_RINGFS_W25Q_H
- #include <stdint.h>
- //#include <unistd.h>
- struct rfs_dev_w25q;
- extern struct ringfs_flash_partition rfs_disk_w25q;
- void init_flash_driver_w25q(void);
- void rfs_dev_w25q_close(struct rfs_dev_w25q *sim);
- #endif //----------------------LIB_RINGFS_W25Q_H--------------------//
- #endif //---------------------USE_LIB_RINGFS_W25Q==1--------------------//
- /* vim: set ts=4 sw=4 et: */
|