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