1 | /* This header file is part of the ATMEL AVR-UC3-SoftwareFramework-1.7.0 Release */ |
---|
2 | |
---|
3 | /*! \page License |
---|
4 | * Copyright (C) 2009, H&D Wireless AB All rights reserved. |
---|
5 | * |
---|
6 | * Redistribution and use in source and binary forms, with or without |
---|
7 | * modification, are permitted provided that the following conditions are met: |
---|
8 | * |
---|
9 | * 1. Redistributions of source code must retain the above copyright notice, |
---|
10 | * this list of conditions and the following disclaimer. |
---|
11 | * |
---|
12 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
---|
13 | * this list of conditions and the following disclaimer in the documentation |
---|
14 | * and/or other materials provided with the distribution. |
---|
15 | * |
---|
16 | * 3. The name of H&D Wireless AB may not be used to endorse or promote products derived |
---|
17 | * from this software without specific prior written permission. |
---|
18 | * |
---|
19 | * THIS SOFTWARE IS PROVIDED BY H&D WIRELESS AB ``AS IS'' AND ANY EXPRESS OR IMPLIED |
---|
20 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
---|
21 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY AND |
---|
22 | * SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, |
---|
23 | * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
---|
24 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
---|
25 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
---|
26 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
---|
27 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
---|
28 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
---|
29 | */ |
---|
30 | #ifndef NOR_FLASH_H |
---|
31 | #define NOR_FLASH_H |
---|
32 | |
---|
33 | #include "at45dbx.h" |
---|
34 | |
---|
35 | #define SECTOR_SIZE AT45DBX_SECTOR_SIZE |
---|
36 | |
---|
37 | void flash_init(void); |
---|
38 | void flash_write(U32 addr, const U8* buf, U32 len); |
---|
39 | void flash_read(U32 addr, U8* buf, U32 len); |
---|
40 | |
---|
41 | #endif |
---|