Moved all source to the trunk directory.
[pub/USBasp.git] / LUFA / DriverStubs / Dataflash.h
1 /*
2 LUFA Library
3 Copyright (C) Dean Camera, 2009.
4
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.com
7 */
8
9 /*
10 Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)
11
12 Permission to use, copy, modify, and distribute this software
13 and its documentation for any purpose and without fee is hereby
14 granted, provided that the above copyright notice appear in all
15 copies and that both that the copyright notice and this
16 permission notice and warranty disclaimer appear in supporting
17 documentation, and that the name of the author not be used in
18 advertising or publicity pertaining to distribution of the
19 software without specific, written prior permission.
20
21 The author disclaim all warranties with regard to this
22 software, including all implied warranties of merchantability
23 and fitness. In no event shall the author be liable for any
24 special, indirect or consequential damages or any damages
25 whatsoever resulting from loss of use, data or profits, whether
26 in an action of contract, negligence or other tortious action,
27 arising out of or in connection with the use or performance of
28 this software.
29 */
30
31 /*
32 This is a stub driver header file, for implementing custom board
33 layout hardware with compatible LUFA board specific drivers. If
34 the library is configured to use the BOARD_USER board mode, this
35 driver file should be completed and copied into the "/Board/" folder
36 inside the application's folder.
37
38 This stub is for the board-specific component of the LUFA Dataflash
39 driver.
40 */
41
42 #ifndef __DATAFLASH_USER_H__
43 #define __DATAFLASH_USER_H__
44
45 /* Includes: */
46 // TODO: Add any required includes here
47
48 /* Preprocessor Checks: */
49 #if !defined(INCLUDE_FROM_DATAFLASH_H)
50 #error Do not include this file directly. Include LUFA/Drivers/Board/Dataflash.h instead.
51 #endif
52
53 /* Private Interface - For use in library only: */
54 #if !defined(__DOXYGEN__)
55 /* Macros: */
56 #define DATAFLASH_CHIPCS_MASK // TODO: Replace this with a mask of all the /CS pins of all dataflashes
57 #define DATAFLASH_CHIPCS_DDR // TODO: Replace with the DDR register name for the board's Dataflash ICs
58 #define DATAFLASH_CHIPCS_PORT // TODO: Replace with the PORT register name for the board's Dataflash ICs
59 #endif
60
61 /* Public Interface - May be used in end-application: */
62 /* Macros: */
63 /** Constant indicating the total number of dataflash ICs mounted on the selected board. */
64 #define DATAFLASH_TOTALCHIPS // TODO: Replace with the number of dataflashes on the board, max 2
65
66 /** Mask for no dataflash chip selected. */
67 #define DATAFLASH_NO_CHIP DATAFLASH_CHIPCS_MASK
68
69 /** Mask for the first dataflash chip selected. */
70 #define DATAFLASH_CHIP1 // TODO: Replace with mask to select the first Dataflash chip
71
72 /** Mask for the second dataflash chip selected. */
73 #define DATAFLASH_CHIP2 // TODO: Replace with mask to select the second Dataflash chip, if available
74
75 /** Internal main memory page size for the board's dataflash ICs. */
76 #define DATAFLASH_PAGE_SIZE // TODO: Replace with the page size for the Dataflash ICs
77
78 /** Total number of pages inside each of the board's dataflash ICs. */
79 #define DATAFLASH_PAGES // TODO: Replace with the total number of pages inside one of the Dataflash ICs
80
81 #endif