1 /**************************************************************************/
4 @author K. Townsend (microBuilder.eu)
10 Software License Agreement (BSD License)
12 Copyright (c) 2010, microBuilder SARL
15 Redistribution and use in source and binary forms, with or without
16 modification, are permitted provided that the following conditions are met:
17 1. Redistributions of source code must retain the above copyright
18 notice, this list of conditions and the following disclaimer.
19 2. Redistributions in binary form must reproduce the above copyright
20 notice, this list of conditions and the following disclaimer in the
21 documentation and/or other materials provided with the distribution.
22 3. Neither the name of the copyright holders nor the
23 names of its contributors may be used to endorse or promote products
24 derived from this software without specific prior written permission.
26 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY
27 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
28 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
29 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
30 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
31 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
32 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
33 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 /**************************************************************************/
45 #include "core/cpu/cpu.h"
46 #include "core/pmu/pmu.h"
48 #ifdef CFG_PRINTF_UART
49 #include "core/uart/uart.h"
53 #include "core/cmd/cmd.h"
57 #include "drivers/chibi/chb.h"
61 #include "core/usbhid-rom/usbhid.h"
65 volatile unsigned int lastTick
;
66 #include "core/usbcdc/usb.h"
67 #include "core/usbcdc/usbcore.h"
68 #include "core/usbcdc/usbhw.h"
69 #include "core/usbcdc/cdcuser.h"
70 #include "core/usbcdc/cdc_buf.h"
74 #include "drivers/lcd/bitmap/st7565/st7565.h"
75 #include "drivers/lcd/smallfonts.h"
79 #include "drivers/lcd/bitmap/ssd1306/ssd1306.h"
80 #include "drivers/lcd/smallfonts.h"
84 #include "drivers/lcd/tft/lcd.h"
85 #include "drivers/lcd/tft/touchscreen.h"
86 #include "drivers/lcd/tft/drawing.h"
90 #include "drivers/eeprom/mcp24aa/mcp24aa.h"
91 #include "drivers/eeprom/eeprom.h"
95 #include "core/pwm/pwm.h"
99 #include "core/ssp/ssp.h"
100 #include "drivers/fatfs/diskio.h"
101 #include "drivers/fatfs/ff.h"
110 /**************************************************************************/
112 Configures the core system clock and sets up any mandatory
113 peripherals like the systick timer, UART for printf, etc.
115 This function should set the HW to the default state you wish to be
116 in coming out of reset/startup, such as disabling or enabling LEDs,
117 setting specific pin states, etc.
119 /**************************************************************************/
122 cpuInit(); // Configure the CPU
123 systickInit(CFG_SYSTICK_DELAY_IN_MS
); // Start systick timer
124 gpioInit(); // Enable GPIO
125 pmuInit(); // Configure power management
127 // Set LED pin as output and turn LED off
128 gpioSetDir(CFG_LED_PORT
, CFG_LED_PIN
, 1);
129 gpioSetValue(CFG_LED_PORT
, CFG_LED_PIN
, CFG_LED_OFF
);
131 // Config alt reset pin if requested (really only relevant to LPC1343 LCD Board)
133 gpioSetDir (CFG_ALTRESET_PORT
, CFG_ALTRESET_PIN
, gpioDirection_Input
);
134 gpioSetInterrupt (CFG_ALTRESET_PORT
, CFG_ALTRESET_PIN
, gpioInterruptSense_Level
, gpioInterruptEdge_Single
, gpioInterruptEvent_ActiveHigh
);
135 gpioIntEnable (CFG_ALTRESET_PORT
, CFG_ALTRESET_PIN
);
143 // Initialise UART with the default baud rate
144 #ifdef CFG_PRINTF_UART
146 uint32_t uart
= eepromReadU32(CFG_EEPROM_UART_SPEED
);
147 if ((uart
== 0xFFFFFFFF) || (uart
> 115200))
149 uartInit(CFG_UART_BAUDRATE
); // Use default baud rate
153 uartInit(uart
); // Use baud rate from EEPROM
156 uartInit(CFG_UART_BAUDRATE
);
160 // Initialise PWM (requires 16-bit Timer 1 and P1.9)
165 // Initialise USB HID
170 // Initialise USB CDC
172 lastTick
= systickGetTicks(); // Used to control output/printf timing
173 CDC_Init(); // Initialise VCOM
174 USB_Init(); // USB Initialization
175 USB_Connect(TRUE
); // USB Connect
176 // Wait until USB is configured or timeout occurs
177 uint32_t usbTimeout
= 0;
178 while ( usbTimeout
< CFG_USBCDC_INITTIMEOUT
/ 10 )
180 if (USB_Configuration
) break;
181 systickDelay(10); // Wait 10ms
186 // Printf can now be used with UART or USBCDC
188 // Initialise the ST7565 128x64 pixel display
191 st7565ClearScreen(); // Clear the screen
192 st7565Backlight(1); // Enable the backlight
195 // Initialise the SSD1306 OLED display
197 ssd1306Init(SSD1306_INTERNALVCC
);
198 ssd1306ClearScreen(); // Clear the screen
201 // Initialise TFT LCD Display
204 // You may need to call the tsCalibrate() function to calibrate
205 // the touch screen is this has never been done. This only needs
206 // to be done once and the values are saved to EEPROM. This
207 // function can also be called from tsInit if it's more
211 if (eepromReadU8(CFG_EEPROM_TOUCHSCREEN_CALIBRATED) != 1)
220 // Warning: CFG_CHIBI must be disabled if no antenna is connected,
221 // otherwise the SW will halt during initialisation
223 // Write addresses to EEPROM for the first time if necessary
224 // uint16_t addr_short = 0x0025;
225 // uint64_t addr_ieee = 0x0000000000000025;
226 // mcp24aaWriteBuffer(CFG_EEPROM_CHIBI_SHORTADDR, (uint8_t *)&addr_short, 2);
227 // mcp24aaWriteBuffer(CFG_EEPROM_CHIBI_IEEEADDR, (uint8_t *)&addr_ieee, 8);
229 // chb_pcb_t *pcb = chb_get_pcb();
230 // printf("%-40s : 0x%04X%s", "Chibi Initialised", pcb->src_addr, CFG_PRINTF_NEWLINE);
233 // Start the command line interface
239 /**************************************************************************/
241 @brief Sends a single byte to a pre-determined peripheral (UART, etc.).
246 /**************************************************************************/
247 void __putchar(const char c
)
249 #ifdef CFG_PRINTF_UART
250 // Send output to UART
255 /**************************************************************************/
257 @brief Sends a string to a pre-determined end point (UART, etc.).
262 @note This function is only called when using the GCC-compiler
263 in Codelite or running the Makefile manually. This function
264 will not be called when using the C library in Crossworks for
267 /**************************************************************************/
268 int puts(const char * str
)
270 // There must be at least 1ms between USB frames (of up to 64 bytes)
271 // This buffers all data and writes it out from the buffer one frame
272 // and one millisecond at a time
273 #ifdef CFG_PRINTF_USBCDC
274 if (USB_Configuration
)
277 cdcBufferWrite(*str
++);
278 // Check if we can flush the buffer now or if we need to wait
279 unsigned int currentTick
= systickGetTicks();
280 if (currentTick
!= lastTick
)
283 uint32_t bytesRead
= 0;
284 while (cdcBufferDataPending())
286 // Read up to 64 bytes as long as possible
287 bytesRead
= cdcBufferReadLen(frame
, 64);
288 USB_WriteEP (CDC_DEP_IN
, frame
, bytesRead
);
291 lastTick
= currentTick
;
295 // Handle output character by character in __putchar
296 while(*str
) __putchar(*str
++);