Merge branch 'master' of git://github.com/microbuilder/LPC1343CodeBase
[hackover2013-badge-firmware.git] / ChangeLog.txt
1 v1.1.2 - ongoing
2 ==============================================================================
3 NEW FEATURES
4 ------------------------------------------------------------------------------
5 - Added fastHLine and fastVLine to lcdProperties_t for all lcd drivers (to
6 known whether an accelerated vertical or horizontal line drawing function
7 is present in the driver or not).
8 - Updated all LCD drivers to include the fastHLine and fastVLine flags.
9 - Added PWM command to CLI (thanks Miceuz)
10 - Added optional callback in 32-bit timer ISR (thanks again Miceuz)
11
12
13 v1.1.1 - 14 April 2012
14 ==============================================================================
15 NEW FEATURES
16 ------------------------------------------------------------------------------
17 - Added drawRoundedRectangle to drawing.c
18 - Added ability to select filled or empty rounded rectangles to the 'R' CLI
19 command
20 BUG FIXES/OPTIMISATION/ETC.
21 ------------------------------------------------------------------------------
22 - Fixed Crossworks Project (missing dependencies)
23
24
25 v1.1.0 - 9 April 2012
26 ==============================================================================
27 BREAKING CHANGES
28 ------------------------------------------------------------------------------
29 - Rewrote corner and rounded rectangle code. Only one corner enum is now used
30 (drawCorners_t)
31 - Renamed drawRectangleRounded to drawRoundedRectangleFilled
32 - Removed drawProgressBar and drawButton from drawing.c, since drawing should
33 only contain drawing primitives
34 - Reorganised a lot of the TFT drawing library to support external controls,
35 and dynamically switch between bitmap and anti-aliased fonts. In the future
36 everything that isn't a basic drawing primitive will be placed in it's own
37 control. The main benefit of this is that it's much easier to customize the
38 look and feel of your UI without having to modify drawing.c and the basic
39 drawing primitives, and to be able to switch from bitmap to anti-aliased
40 fonts depending on how much flash space you have free, etc.
41 - Removed bmp_error_t drawBitmapImage(uint16_t x, uint16_t y, char *filename)
42 to keep better seperation of primitives and more complex features, and
43 reduce external dependencies in drawing.c. Call bmpDrawImage (bmp.c)
44 directly instead.
45
46 NEW FEATURES
47 ------------------------------------------------------------------------------
48 - Added drawCorner to drawing.c
49 - Added new 'controls/' folder to the GFX library, and added a number of
50 controls that will render correctly with the theme settings, as well as
51 using bitmap or anti-aliased fonts, depending on projectconfig.h
52 - New controls:
53 - button
54 - hsbchart (Hue/saturation/brightness chart for color pickers)
55 - huechart (Hue selection gradient for color pickers)
56 - label
57 - labelcentered
58 - progressbar
59 - Added theme.h to try to define all of the color and font settings used by
60 the controls in one location to make it easier to update or modify
61 - Added aafontsCenterString to aafonts.c
62
63 BUG FIXES/OPTIMISATION/ETC.
64 ------------------------------------------------------------------------------
65 - Updated Crossworks Project to use LPC1000 Lib 1.19 (uses CMSIS 3.0)
66 - Some performance improvements to core/gpio/gpio.c (thanks Tom for the
67 suggestion)
68 - Fixed alpha blending when alpha = 100%
69 - Change gpioSetValue to be inline (should optimise to a single operation)
70
71 v1.0.0 - 23 March 2012
72 ===========================================================
73 - Added support for LPCXpresso IDE
74 - *** Moved '/drivers/chibi' to '/drivers/rf/chibi' ***
75 - *** Moved '/drivers/sensors/pn532' to '/drivers/rf/pn532' ***
76 - *** Renamed '/drivers/spiflash' to '/drivers/storage/spiflash' ***
77 - *** Renamed '/drivers/eeprom' to '/drivers/storage/eeprom' ***
78 - *** Renamed '/drivers/lcd' to '/drivers/display' ***
79 - Added I2C support to the SSD1306 driver
80 - Moved all color conversion and manipulation functions
81 to '/drivers/displays/tft/colors.c', and added a
82 few new functions: colorsDim(), etc.
83 - Added code to render antialiased fonts, based on
84 lookup tables (fast) or alpha-blending (mixed color
85 backgrounds). Support for AA2 (2-bit) and AA4
86 (4-bit) anti-aliased fonts included. Alpha-blending
87 only possible on displays where pixels can be read
88 back.
89 - Added drawGradient() to drawing.c
90 - Removed height parameter from drawButton. It's now
91 calculated based on the font height, and centered.
92 - Added bell to CLI when backspace is pressed beyond
93 the starting position (cosmetic, but still useful)
94 - Removed dependency on /core/libc files in Crossworks
95 when redirecting printf (added printf replacement
96 to sysinit.c instead)
97 - Added basic AS1115 driver for segment displays
98 - Added driver for HX8340-B based LCDs
99 - Added flag to projectconfig.h to disable the default
100 GPIO IRQ Handler functions in code/gpio/gpio.c (in
101 case you want to make your own ISR elsewhere)
102 - Added driver for Samsung VFD displays from Adafruit
103 - Added ADC average sampling option to projectconfig.h.
104 This allows you to take several readings from the
105 ADC and return the average. Helps reduces peaks and
106 valleys in the ADC due to noisen but at the expense
107 of slower reads.
108 See: "tools/validation/adctest" for more info
109 - Added I2C driver for PN532
110 - Updated and added PN532 examples to
111 /tools/examples/sensors/PN532
112 - updated touchscreen.h to be a bit clearer during
113 calibration, though it can still be much better
114 organised
115 - Had to add "__asm volatile("nop");" after pin writes
116 in the ILI9328 driver since some LCDs couldn't
117 keep up with the high-speed writes with bit-banding
118 - Fixed I2C clock duty cycle registers
119 - Changed I2C buffer size from 32 to 64 bytes (i2c.h)
120 - Added CFG_BRD_LPC1343_OLIMEX_P to board selection
121 in projectconfig.h (courtesy PHK)
122 - Added SSD1331_COLORORDER_RGB flag to SSD1331.h to
123 select between RGB and BGR color order
124 - Added 128x32 support to ssd1306.c and rewrote
125 initialize sequence for 128x32 and 128x64 displays
126 - Added driver for Sharp Memory Display
127 /drivers/lcd/bitmap/sharpmem
128 - Added SPI Flash example
129 /tools/examples/spiflash/*
130 - Added write function to SPI Flash driver
131 /drivers/spiflash/*
132 - Added CFG_BRD_LPC1343_REFDESIGN_MINIMAL as a board
133 option in projectconfig.h. Tries to keep the flash
134 use as small as possible by initialising less
135 peripherals in systemInit().
136 - Changed CodeLite project files to support real
137 debugging with a Segger J-Link and GDB Server.
138 - Fixed issue with USB CDC instantiation for
139 FreeBSD (courtesy PHK)
140 - Added experimental SSD1351 OLED driver to
141 /drivers/lcd/tft/hw
142
143 v0.9.5 - 3 August 2011
144 ======================
145
146 - Redid the font rendering code to use DotFactory
147 generated fonts, and update to the latest binary
148 in the /tools folder. All fonts have been
149 re-rendered to accomodate the updated code.
150 - Updated clock values in cpu.c for PLL to match FCCO
151 range of 156-320MHz
152 - Changed SCB_PLLCTRL_MULT_* to SCB_PLLCTRL_MSEL_* in
153 lpc111x.h to match usermanual
154 - Changed SCB_PLLCTRL_DIV_* SCB_PLLCTRL_PSEL_* in
155 lpc111x.h to match usermanual
156 - Added inline version of key functions in ili9328.c,
157 which increases the code size ~1.3KB but more than
158 doubles the drawing speed for most drawing functions
159 by avoiding branch operations and pushing and popping
160 the stack multiple times. Inline methods can be
161 toggled with 'ILI9238_USE_INLINE_METHODS'.
162 - Fixed IOCON_SWDIO_PIO1_3_FUNC_CT32B1_MAT2 in lpc134x.h
163 - Added drawCornerFilled() to drawing.c and LCD CLI
164 - Fixed a nasty bug with 'gpioInterruptEvent' in the
165 gpioSetInterrupt function (core/gpio/gpio.c)
166 - Add drawTriangle() and drawTriangleFilled() to
167 drawing.c and LCD CLI
168 - Added cpuReset() to reset the board via AIRCR
169 - Removed text input dialogue from LCD CLI ('T') to
170 save a few KB. Command file still exists, just no
171 longer included in cmd_tbl.h by default.
172
173 v0.9.2 - 14 June 2011
174 =====================
175
176 - Added ISL12022M RTC Driver (/drivers/rtc/isl12022m)
177 - Fixed a bug drawing filled circles with lcdDrawVLine
178 - Added CLI command to toggle LCD backlight
179 - Added rounded rectangle command to CLI
180 - Added CFG_INTERFACE_DROPCR to projectconfig.h to
181 ignore CR (\r) characters in incoming data for
182 the CLI
183 - Added CFG_INTERFACE_SHORTERRORS to projectconfig.h
184 to only send short (1 char + new line) CLI error
185 messages rather than something verbose
186 - Added CFG_INTERFACE_CONFIRMREADY to projectconfig.h
187 to provide a character to indicate when a command
188 is complete in case the IRQ pin
189 (CFG_INTERFACE_ENABLEIRQ) can't be used
190 - Fixed a bug with reversed R and B bits when reading
191 a pixel from the LCD in CLI mode
192 - Added lcdDrawPixels() to lcd.h and the current lcd
193 drivers to render rows of raw lcd data much quicker
194 than addressing consecutive pixels individually.
195 Can be used with windowing in future for fast
196 animation, continuously writing raw pixels in a
197 32x32 pixel frame, etc.
198 - Fixed ili9328SetWindow() and ili9325SetWindow().
199 They can now be used for fast screen paints of
200 restricted areas of the screen, such as animations
201 where raw pixel data is constantly fed to the LCD.
202 - Fixed pixel overflow bugs in drawCircleFilled(). Any
203 pixels that exceed screen limits will now be dropped,
204 though at the expense of slightly slower code.
205 - Added drawLineDotted() to drawing.c to draw lines with
206 a fixed pattern of empty and solid pixels
207 - Added __resetBootloader() macro to lpc134x.h to
208 reset and enter the USB bootloader (LPC1343 Reference
209 Design Base Board only since this depends on the
210 existance of the RC combination on the ISP pin).
211 To reset and executre code normally, the watchdog
212 time can be used (see "core/wdt").
213 - Added AIRCR register to lpc134x.h (Application Interrupt
214 and Reset Control Register).
215 - Added drawIcon16() to drawing.c to render monochrome
216 16x16 pixel icons from a byte array.
217 - Added a handful of common 16x16 icon definitions in
218 /drivers/lcd/icons16.h ... adapted from Gentleface
219 Toolbar Icon Set. For license terms see
220 http://www.gentleface.com/free_icon_set.html
221 - Added a few basic RGB565 color schemes to colors.h and
222 an image file showing the colors in /tools/colors_h.png
223 - Updated alphanumeric dialogue form to use new buttons.
224 - Rewrote drawButton() to use rounded rectangle and
225 all colors are now passed in as parameters. Also
226 modified the button command in the CLI to match this.
227 - Rewrote drawProgressBar() to take advantage of the
228 new rounded rectangle function (below). Also
229 modified the progress bar command in the CLI to
230 allow more colors to be indicated when rendering.
231 - Added drawRectangleRounded() to drawing.c (filled
232 rectangle with configurable rounded corners).
233 - Added drawArrow() to drawing.c to make small rectangles
234 for left/right menu items, etc.
235 - Completely rewrote the touch screen calibration code to
236 be much more accurate.
237
238 v0.9.0 - 28 March 2011
239 ======================
240
241 - Calibration process no longer starts automatically when
242 calibration data is not found in EEPROM. tsCalibrate()
243 now needs to called manually or from the CLI.
244 - Fixed a bug in cmd_tswait.c when no delay was passed.
245 - Added CLI command to set touch screen threshold
246 to register a touch event (since this can vary from
247 screen to screen). Type 'x' at the CLI to get/set
248 the value. The setting is persisted to EEPROM, and if
249 no value is found on EEPROM CFG_TFTLCD_TS_DEFAULTTHRESHOLD
250 from projectconfig.h is used.
251 - Adjusted touch screen code to check ADC values twice
252 and compare. If mismatch occurs, and error is returned.
253 This provides far more consistent TS values at the
254 expense of having to check the error results. See
255 'alphanumeric.c' for an example of doing this
256 correctly.
257 - Added seperate driver for ILI9328 based displays, even
258 though it seems to be identical to the ILI9325. Files
259 were seperated in case the initialisation needs to be
260 tweeked later or if incompatibilities are found.
261 - Added the ability to write the contents of the LCD
262 to a bitmap image, though it's very slow reading data
263 pixel by pixel and converting it to 24-bit RGB values.
264 Performance can definately be improved.
265 - Added 'drawRGB565toBGRA32' to drawing.c to convert
266 RGB565 colors back to the canonical BGRA32 format
267 - Added gain controls to TSL2561 driver to increase or
268 decrease sensitivity. Should be easy to implement
269 auto-gain functionality now.
270 - Changed USB VID to a valid value. Source files and
271 lpc134x-vcom.inf updated accordingly.
272 - Moved USB VID and PID to projectconfig.h
273 - Added '-mcpu' flag to the linker in Makefile (the wrong
274 libm was being linked because of this).
275
276 WARNING
277 --------------------------------------------------------
278 - Some config settings in EEPROM were relocated in v0.90+
279 of the LPC1343 Code Base to take into account the new
280 touch screen calibration code. See projectconfig.h
281 for more details of the new EEPROM layout.
282
283 v0.8.6 - 21 March 2011
284 ======================
285
286 - Added DWT section to LPC134x.h (see Cortex-M3
287 Technical Reference Manual section 8.3)
288 - Added CPU_RESET_CYCLECOUNTER to cpu.c to do rough
289 in-code performance checks (counts CPU cycles)
290 - Added '-lm' to linker in Makefile for math.c support
291 - Increased MAX_STRING_SIZE from 100 to 255 in stdio.c
292 - Added driver for the TCS3414 RGB color sensor
293 - Added driver for the TSL2561 digital light sensor
294 - Added CFG_USBCDC_BUFFERSIZE to projectconfig.h
295 instead of cdc_buf.h.
296 - Added a PWM example using a piezo buzzer (see
297 'tools/examples/basics/pwm_piezobuzzer' for details)
298 - Added ctype.c to 'core/libc'
299 - Changed Crossworks project to use libc files from
300 'core/libc' and modified the USB CDC printf to be
301 much faster by redirecting inside 'puts' rather than
302 '__putchar' (see 'sysinit.c').
303 - Fixed a bug in LPC134x.h ... USB_CMDCODE write and read
304 masks were reversed
305 - Added a simple example of reading the card ID from an
306 ISO14443A (Mifare Classic, etc.) card using the PN532
307 ('/tools/examples/sensors/pn532/ISO14443A_ID').
308 - Added an 'lcd' folder to 'tools/examples' showing how to use
309 the generic lcd drawing routines, the touch-screen, etc.
310 - Rewrote part of the touch screen calibration code to get more
311 accurate results. Each point is now tested twice and the
312 results are averaged. Values beyond a certain limit are also
313 rejected to ignore wacky readings.
314 - Added a preliminary PN532 (NFC/RFID) driver. Currently UART
315 only, and only allows simple commands to be sent and received.
316 By default, all data is fed out to the console via printf.
317 Will be elaborated and expanded in future releases.
318 - Cleaned up the ILI9325 TFT LCD driver a bit, adding a proper
319 enum for the commands, etc.
320
321
322 v0.8.5 - 7 March 2011
323 =====================
324
325 - Fixed a problem with GDB script when deploying firmware
326 with Segger J-Link in CodeLite. Code will now deploy
327 and start executing properly when F5 is pressed (assuming
328 the Segger GDB Server software is running in the background).
329 - Interrupts are now disabled while feeding the watchdog as per
330 a warning in the usermanual.
331 - Changed fonts for TTF LCDs. DejaVu Sans 9 is now used by default
332 in the LPC1343 Code Base. The following open source fonts have
333 been converted using The Dot Factory (see '/tools/dotfactory') and
334 can be found in '/drivers/lcd/tft/fonts':
335
336 FONT NAME WIDTH
337 ------------------------------- ----------
338 - Bitstream Vera Mono 9 Fixed (8)
339 - Bitstream Vera Mono 9 Bold Fixed (8)
340 - Bitstream Vera Mono 11 Fixed (9)
341 - Bitstream Vera Mono 11 Bold Fixed (9)
342 - DejaVu Sans 9 Variable
343 - DejaVu Sans 9 Bold Variable
344 - DejaVu Sans Condensed 9 Variable
345 - DejaVu Sans Mono 8 Fixed (8)
346 - DejaVu Sans Mono 8 Bold Fixed (8)
347
348 - Modified projectconfig.h to select the target board and configure
349 the project accordingly. This isn't ideal, but it's a lot more
350 maintainable than have a seperate code base for every board since
351 they share 95% of the same code.
352 - Modified WDT code to use the WDT oscillator (rather than the
353 external crystal)
354 - Fixed a bug when waking up from sleep in Chibi. Removed systick
355 delay when toggling reset and slptr pins since this was causing
356 a blocking condition with the wakeup ISR.
357 - Added an example of how to retrieve the MCU's unique
358 128-bit serial number using IAP (core/iap)
359 - Added an option to projectconfig.h to select which pin to use for
360 SCK on SSP0, since the QFN33 package doesn't have all the same
361 pins.
362 - Updated Chibi to v0.91 (adds sleep method and promiscuous mode to allow
363 Chibi to act as an 802.15.4 packet sniffer, etc.).
364 - Added lcdProperties_t to lcd.h to indicate the properties of different
365 LCDs (to determine if there is a touch screen present, whether the
366 screen orientation can be changed, etc.)
367 - Added basic ST7735 LCD driver (128x160 pixel TFT LCD using 6-pin
368 SPI-esque interface). Work in progress (no orientation support, etc.).
369 - Added some simple examples in the 'tools/examples' folder.
370
371 v0.80 - 27 Jan 2011
372 ===================
373
374 - Added optimised lcdDrawVLine using orientation
375 though this should only be used on lines
376 greate than 20 pixels or so to see any real
377 advantage
378 - Added cmd_uart to allow the HW UART speed
379 to be set in EEPROM (between 9600 and
380 115200). Use the 'U' command.
381 - Updated Crossworks projects files to use
382 custom printf in 'core/libc' (gains about
383 1.3KB in release mode)
384 - Added driver for SSD1306 OLED displays
385 to '/drivers/bitmap/ssd1306'
386 - Changed commands in the CLI to single
387 characters and shortened descriptions
388 to save flash space (~0.7KB)
389 - Updated ILI9325 to allow the screen
390 orientation to be changed to portrait
391 of landscape mode.
392 - Added cmd_orientation to change the LCD
393 orientation from the CLI
394 - Fixed a bug in the PMU Wakeup interrupt
395 handler
396 - Added a circular buffer for outgoing CDC
397 data (cdc_buf.c) since you can only feed one
398 frame per ms (max 64 bytes). The speed needs
399 to be improved finding the right balance
400 between caching data and sending it to the EP,
401 but this should avoid any dropped characters.
402 More testing will be needed to improve this.
403 - Fixed a bug with the USB CDC buffer
404 - Added SILENTMODE to the CLI to disable the
405 command prompt and echo of input characters
406 (see CFG_INTERFACE_SILENTMODE). Useful
407 when another MCU is use the CLI rather than
408 a human.
409 - Added IRQ pin to the CLI to indicate when a
410 command is being processed (pin = low) and
411 when it has completed or a new command can
412 be processed (pin = high).
413 - Added 'cmd_tswait' to wait for a touch event
414 - Removed 'drivers/nfc/pn532' until proper drivers
415 can be written
416 - Added 'cmd_text' and 'cmd_textw' to the CLI to
417 render text on the LCD and get the width in
418 pixels of the specified text before rendering.
419
420 v0.70 - 18 Dec 2010
421 ===================
422
423 - Added 'calibrate' and 'gettext' commands to the CLI
424 - Added a dialogue box for the TFT LCD/Touchscreen
425 to input alpha-numeric data and return the
426 results as a string ('drivers/lcd/tft/dialogues/*')
427 - Added touch screen calibration code and UI
428 ('drivers/lcd/tft/touchscreen.c')
429 - Fixed a bug in ILI9325.c to make sure that the LCD
430 is reset during initialisation
431 - ** IMPORTANT ** Changed 'core/i2c/*' to fix a number
432 of bugs (thanks Rob65!) ... though this means all
433 i2c peripherals and drivers will need to be tested.
434 - Added 'colorscheme_t' to drawing.h to try to use a
435 standard color palette across GUI controls and make
436 it easy to change later. Currently only the button
437 and progress bar make use of this.
438 - Added 'lcdBacklightOn()' and 'lcdBacklightOff()' to
439 lcd.h
440 - Added 'CFG_TFTLCD_TS_THRESHOLD' to projectconfig.h
441 to configure touch-screen sensitivity when waiting
442 for a touch event
443 - Modified 'core/gpio/gpio.c' to reduce the compiled code
444 size. Repetitive switches where only the registers
445 change were modified to use temporary registers and
446 execute the code only once.
447 - Added the source and binaries for TheDotFactory to
448 'tools/dotfactory' for convenience sake. See:
449 http://www.pavius.net/downloads/tools/53-the-dot-factory
450 - Removed 'drivers/lcd/tft/tscalibration.c' and moved
451 the relevant code to touchscreen.c
452 - Removed the imgconv tool from 'tools/imgconv' (see
453 point below for more information)
454 - Removed the previous custom image code and replaced
455 it with 24-bit Windows bitmap files. This is a bit
456 slower (since 24-bit data needs to be converted to
457 RGB565 for each pixel and rows are rendered bottom
458 up making pixel drawing harder to optimise) but
459 converting and eventually saving images is easier.
460 The current code is functional but needs to be
461 heavily optimised.
462 - Made some minor optimisations to the data and cmd
463 functions in the ILI9325 driver. Other functions
464 need to be optimised as well, but these two should
465 be close to optimal now. Currently 25 cycles
466 compiled with -Os, 36 cycles with no optimisation.
467 - Added 'projects/command/drawing/cmd_bmp.c' to load
468 24-bit Windows bitmap images from the SD card and
469 display them on the TFT LCD.
470 - Added some schematics to '/tools/schematics' to
471 show the assumed pin configurations
472
473 v0.60 - 8 December 2010
474 =======================
475
476 - Added a number of CLI commands for the TFT LCD
477 (see 'project/commands/drawing')
478 - Modified FCLK_FAST() in 'drivers/fatfs/mmc.c' to set
479 the max speed to 6.0MHz for improved reliability.
480 Tested with a 4GB microSD card, 300KB/s can be read
481 using a 512 byte read buffer.
482 - Modified Chibi to use 16-bit timer 0 for us delays
483 (more accurate)
484 - Added a number of commands to
485 '/projects/commands/drawing' for basic TFT LCD
486 operations. Removed 'lcd-test.c' and 'lcd-fill.c'.
487 - Added a flag to projectconfig.h to make FATFS read-only
488 (to save a couple KB when space is tight).
489 - Moved 'project/eeprom.*' to 'drivers/eeprom' to add a
490 level of abstraction to eeprom access throughout the code
491 - Added a table to projectconfig.h to manage eeprom
492 addresses. First 256 byte of eeprom should be reserved
493 for this.
494 - Added 'drivers/lcd/tft/colors.h' to keep all common
495 16-bit RGB565 color definitions in one location
496 - Added some sample images to 'tools/imgconv' that can
497 be used to render a basic clock on a TFT LCD screen
498 (using drawImageFromFile in 'drivers/lcd/tft/drawing.c')
499 - Modified the makefile to automatically run './lpcrc'
500 post-build
501 - Added drawButton() to 'drivers/lcd/tft/drawing.c'
502 - Updated 'drivers/lcd/tft/touchscreen.c' to do basic
503 debouncing. tsReadZ() was added to detect pressure on
504 the touch screen, and tsWaitForEvent() will only exit
505 when the pressure passes a minimum threshold. (Thanks
506 to Limor for pointing out some code by Rossum for this.)
507 - Fixed some off-by-one pixel errors in cmd-test and
508 elsewhere
509
510 v0.51 - 27 November 2010
511 ========================
512
513 - Added simple RSA encryption/decryption driver. Currently limited to
514 using 64-bit and 32-bit numbers in key pairs, which isn't terribly secure,
515 but allows much smaller code size than if huge number support was included.
516 - Added a driver for the MCP4725 I2C DAC (see "drivers/dac/mcp4725").
517 - Moved 'rom_drivers.h' from 'core/usbhid-rom' to 'core' since it can be used
518 for usbmsd-rom as well if it is implemented at a later date.
519 - ili9325ReadData() added to ili9325.c by Adafruit Industries (thanks!)
520 - Modified FCLK_FAST() in 'drivers/fatfs/mmc.c' to set fast SPI speed
521 to 18MHz instead of the previous 4MHz. This allows for slightly faster
522 rendering of bitmap images from SD cards, amongst other things.
523 - Fixed ILI9325 driver to use 0,0 based pixels and not 1x1, meaning the
524 pixel co-ordinates are 0..239 for X and 0..319 for Y. There may still be
525 some off-by-one pixel issues that need to be further tested.
526
527 v0.50 - 26 October 2010
528 =======================
529
530 - Moved command.c and cmd_tbl.h to /project to try to keep all
531 project-specific files in one location to improve code-sharing and make
532 upgrading easier
533 - Created seperate .c files for every command for the command-line interface
534 to make it easier to maintain and share code between projects. All commands
535 listed in cmd_tbl.h are now stored in their own files in /project/commands
536 (ex.: "/project/commands/cmd_hello.c", etc.)
537 - Added a CLI command to demonstrate how to draw to the ILI9325 TFT LCD
538 - Added a CLI command to show the contents of any directory from the SD card
539 (/project/commmands/cmd_sd_dir.c)
540 - Added a CLI command showing how to enter deep-sleep and exit with a SW
541 wakeup (/project/commands/cmd_deepsleep.c). Please note that the wakeup
542 will not work if you are using USB for the CLI. To see the wakeup message,
543 you must use UART for the CLI, which is selected by uncommenting
544 CFG_PRINTF_UART in projectconfig.h
545 - Fixed pmu.c to set the core clock back to an appropriate state after wakeup
546 - Added simple wrapper for eeprom access (projects/eeprom.c)
547 - Reorganised drivers/lcd to take into account non TFT LCD displays.
548 - Added a preliminary (experimental) driver for 128x64 pixel ST7565-based
549 bitmap LCDs (ex: Adafruit Industries - http://bit.ly/9xj5vw) ... based on a
550 driver from Limor Fried at Adafruit
551 - Numerous bug fixes added by Roel Verdult (Linux compatibility, GCC warnings, etc.)
552 - Added stub files for PN532 driver (/drivers/nfc/pn532), and added CFG_PN532 to
553 projectconfig.h as an option
554 - Added a simple pwm example using 16-bit timer 1 and p1.9 (MAT0) for the output. PWM can be used
555 to drive stepper motors, or to dim LEDs by adjusting the duty-cycle, etc. The example can be
556 found in "/core/pwm"
557 - Added a bi-polar stepper motor driver based on the Arduino library. Basic position data was added
558 to detece deviation from the 'Home' position and to retrieve the spindle's current angle. See
559 "drivers/motor/stepper" for more information.
560 - Added test firmware for the UART and USBCDC CLI (tools/testfirmware)
561 - Added a table to projectconfig.h to try to keep track of pin and peripherals
562 usage by drivers and the included SW examples.
563 - Reorganised some pins used by drivers to avoid pin conflicts.
564 - Modified core/timer16/timer16.c to allow PWM output to be stopped after a
565 certain number of pulses have been sent out.
566
567 KNOWN ISSUES
568
569 - The SPI code needs to be modified to allow several SPI devices to be safely
570 connected on the same bus. At present, this has not been tested since the
571 SSP/SPI blocks are used exclusively in the current drivers.
572
This page took 0.085437 seconds and 5 git commands to generate.