1 /**************************************************************************/
4 @author K. Townsend (microBuilder.eu)
8 Software License Agreement (BSD License)
10 Copyright (c) 2011, microBuilder SARL
13 Redistribution and use in source and binary forms, with or without
14 modification, are permitted provided that the following conditions are met:
15 1. Redistributions of source code must retain the above copyright
16 notice, this list of conditions and the following disclaimer.
17 2. Redistributions in binary form must reproduce the above copyright
18 notice, this list of conditions and the following disclaimer in the
19 documentation and/or other materials provided with the distribution.
20 3. Neither the name of the copyright holders nor the
21 names of its contributors may be used to endorse or promote products
22 derived from this software without specific prior written permission.
24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY
25 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
26 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
28 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
29 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
31 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 /**************************************************************************/
40 #include "projectconfig.h"
43 #include "core/gpio/gpio.h"
44 #include "core/systick/systick.h"
45 #include "drivers/storage/spiflash/spiflash.h"
48 #include "core/cmd/cmd.h"
51 /**************************************************************************/
53 Main program entry point. After reset, normal code execution will
56 /**************************************************************************/
59 // Configure cpu and mandatory peripherals
62 spiflashError_e error
;
65 // Wait a few seconds to let people connect to USB CDC to see the output
68 // Initialise SPI, etc.
69 printf("Initialising flash\r\n");
72 printf("Erasing sector 0 (page 0..15)\r\n");
73 error
= spiflashEraseSector (0);
76 // Check what went wrong
79 case SPIFLASH_ERROR_ADDROUTOFRANGE
:
80 // Specified starting address is out of range
82 case SPIFLASH_ERROR_TIMEOUT_READY
:
83 // Timeout waiting for ready status (can be pre or post write)
85 case SPIFLASH_ERROR_PROTECTIONERR
:
86 // Flash is write protected
91 printf("Writing 8 bytes to page 0 starting at address 0x04 (byte 5)\r\n");
100 error
= spiflashWritePage (0x04, buffer
, 8);
103 // Check what went wrong
106 case SPIFLASH_ERROR_ADDROUTOFRANGE
:
107 // Specified starting address is out of range
109 case SPIFLASH_ERROR_DATAEXCEEDSPAGESIZE
:
110 // Supplied data exceeds max page size
112 case SPIFLASH_ERROR_PAGEWRITEOVERFLOW
:
113 // The data length plus the start address offset exceeeds page limits
115 case SPIFLASH_ERROR_TIMEOUT_READY
:
116 // Timeout waiting for ready status (can be pre or post write)
118 case SPIFLASH_ERROR_PROTECTIONERR
:
119 // Unable to set write latch
124 printf("Reading 16 bytes from page 1 (bytes 0..15)\r\n");
125 // Clear buffer just to prove the point
142 error
= spiflashReadBuffer (0, buffer
, 16);
145 // Check what went wrong
148 case SPIFLASH_ERROR_ADDROUTOFRANGE
:
149 // Specified starting address is out of range
151 case SPIFLASH_ERROR_TIMEOUT_READY
:
152 // Timed out waiting for flash to return ready state
154 case SPIFLASH_ERROR_ADDROVERFLOW
:
155 // Ran over the upper address during read
160 // Display read results
161 printf("0x%02X 0x%02X 0x%02X 0x%02X 0x%02X 0x%02X 0x%02X 0x%02X 0x%02X 0x%02X 0x%02X 0x%02X 0x%02X 0x%02X 0x%02X 0x%02X %s", buffer
[0], buffer
[1], buffer
[2], buffer
[3], buffer
[4], buffer
[5], buffer
[6], buffer
[7], buffer
[8], buffer
[9], buffer
[10], buffer
[11], buffer
[12], buffer
[13], buffer
[14], buffer
[15], CFG_PRINTF_NEWLINE
);