Add setReset instead of reset function. Fix comments.
[bertos.git] / bertos / hw / hw_dataflash.h
1 /**
2  * \file
3  * <!--
4  * Copyright 2008 Develer S.r.l. (http://www.develer.com/)
5  * All Rights Reserved.
6  * -->
7  *
8  * \brief Dataflash HW control routines (interface).
9  *
10  * \version $Id$
11  * \author Francesco Sacchi <batt@develer.com>
12  */
13
14 #ifndef HW_DATAFLASH_H
15 #define HW_DATAFLASH_H
16
17 #include <cfg/compiler.h>
18
19 void dataflash_hw_init(void);
20 void dataflash_hw_setCS(bool enable);
21 void dataflash_hw_setReset(bool enable);
22
23 #endif /* HW_DATAFLASH_H */