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