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