3 Copyright (C) Dean Camera, 2009.
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.com
10 Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)
12 Permission to use, copy, modify, distribute, and sell this
13 software and its documentation for any purpose is hereby granted
14 without fee, provided that the above copyright notice appear in
15 all 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.
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
33 * Main source file for the Standalone Programmer project. This file contains the main tasks of
34 * the demo and is responsible for the initial application hardware configuration.
37 #define INCLUDE_FROM_STANDALONEPROG_C
38 #include "StandaloneProgrammer.h"
40 /** Standard file stream for the currently open file on the disk. */
41 FILE DiskStream
= FDEV_SETUP_STREAM(NULL
, Disk_getchar
, _FDEV_SETUP_READ
);
43 /** Petite FAT Fs structure to hold the internal state of the FAT driver for the dataflash contents. */
46 /** Stream character fetching routine for the FAT driver so that characters from the currently open file can be
47 * read in sequence when applied to a stdio stream.
49 static int Disk_getchar(FILE* Stream
)
54 if (pf_read(&ReadByte
, 1, &ByteWasRead
) != FR_OK
)
57 return (ByteWasRead ? ReadByte
: _FDEV_EOF
);
60 #if defined(USB_CAN_BE_BOTH)
61 /** Event to handle mode changes in the library, to clear the FAT library's drive state structure when transitioning
62 * between modes. This ensures that the library always works with current disk data.
64 void EVENT_USB_UIDChange(void)
66 pf_mount(&DiskFATState
);
70 /** Task to determine if the user is wishes to start the programming sequence, and if so executes the
71 * required functions to program the attached target (if any) with the files loaded to the dataflash.
73 void Programmer_Task(void)
75 static bool HasAttempted
= false;
77 if (Buttons_GetStatus() & BUTTONS_BUTTON1
)
84 puts("==== PROGRAMMING CYCLE STARTED ====\r\n");
86 #if defined(USB_CAN_BE_BOTH)
87 printf("Using %s Drive...\r\n", (USB_CurrentMode
== USB_MODE_HOST
) ?
"External" : "Internal");
90 puts("Reading Configuration File...\r\n");
91 if (!(ProgrammerConfig_ProcessConfiguration()))
95 puts("==== PROGRAMMING CYCLE FINISHED ====\r\n");
103 /** Main program entry point. This routine contains the overall program flow, including initial
104 * setup of all components and the main program loop.
110 LEDs_SetAllLEDs(LEDMASK_USB_NOTREADY
);
116 if (USB_CurrentMode
== USB_MODE_HOST
)
118 #if defined(USB_CAN_BE_HOST)
124 #if defined(USB_CAN_BE_DEVICE)
125 DiskDevice_USBTask();
133 /** Configures the board hardware and chip peripherals for the demo's functionality. */
134 void SetupHardware(void)
136 /* Disable watchdog if enabled by bootloader/fuses */
137 MCUSR
&= ~(1 << WDRF
);
140 /* Disable clock division */
141 clock_prescale_set(clock_div_1
);
143 /* Hardware Initialization */
144 #if defined(USB_CAN_BE_BOTH)
145 USB_Init(USB_MODE_UID
);
151 SPI_Init(SPI_SPEED_FCPU_DIV_2
| SPI_SCK_LEAD_FALLING
| SPI_SAMPLE_TRAILING
| SPI_MODE_MASTER
);
154 SerialStream_Init(9600, true);
156 #if defined(USB_CAN_BE_DEVICE)
157 /* Clear Dataflash sector protections, if enabled */
158 DataflashManager_ResetDataflashProtections();