summaryrefslogtreecommitdiffhomepage
path: root/digital/avr
AgeCommit message (Collapse)Author
2009-05-17 * digital/avr/modules/twi:Nicolas Schodet
- reverted r801.
2009-05-16 * digital/avr/modules/utils:Jérémy Dufour
- add a function to compute CRC.
2009-05-16 * digital/avr/modules/twiJérémy Dufour
- correct a possible bug in the twi module?
2009-05-16 * digital/avr/modules/twi:Jérémy Dufour
- return length of read data when using twi_sl_poll.
2009-05-11* digital/avr/modules/flash: (Closes #68).Nélio Laranjeiro
* Removed the flash stub sub directory and add a real stub in flash.host.c file.
2009-05-07 * digital/avr/common:Nicolas Schodet
- added IO_ macros.
2009-05-07* digital/avr/modules/trace: (See #67)Nélio Laranjeiro
* Adapted the trace module to: * Find the last trace in order to start the new one, trace_i = trace_i-1 + 1 * A quarter of the flash is completely erased on the trace init to be used in the future. * Removed the start code useless from now. * tools/trace: * Update the python scripts to use the new trace implementation.
2009-04-25 * digital/avr/modules/usb:Nicolas Schodet
- solved compilation problem with C99 inlines.
2009-04-25 * digital/avr/modules/isp:Nicolas Schodet
- fixed errors seen after tests.
2009-04-25 * digital/avr/modules/spi:Nicolas Schodet
- added comment about GPIO settings. - added uninit.
2009-04-25 * digital/avr/modules/isp:Nicolas Schodet
- added user callbacks. - removed incomplete watchdog support.
2009-04-25 * digital/avr/modules/isp:Nicolas Schodet
- added many isp_proto commands.
2009-04-25 * digital/avr/modules/isp:Nicolas Schodet
- removed unused buffer_size argument (should be replaced with another mechanism).
2009-04-25 * digital/avr/modules/isp:Nicolas Schodet
- interface changes.
2009-04-25 * all python:Nicolas Schodet
- fixed comment.
2009-04-17 * digital/avr/modules/isp:Nicolas Schodet
- added isp_proto to handle AVR068 and AVR069 commands. - added very first isp_proto command.
2009-04-17 * digital/avr/modules/isp:Nicolas Schodet
- added isp_frame to handle AVR068 protocol.
2009-04-17 * digital/avr/modules/isp:Nicolas Schodet
- added low level programing methods.
2009-04-17 * digital/avr/modules/spi:Nicolas Schodet
- added software driver.
2009-04-17 * digital/avr/modules/spi:Nicolas Schodet
- fixed bad SPI2X mode. - prepare for software driver.
2009-04-17 * digital/avr/modules/spi:Nicolas Schodet
- some cleanup.
2009-04-13 * digital/avr/make/Makefile.fsm:Nicolas Haller
- png target fixed
2009-04-10 * digital/avr/make:Nicolas Schodet
- accept INCLUDES path override from Makefiles.
2009-04-10 * digital/avr/modules/uart:Nicolas Schodet
- added support for AT90USB162.
2009-04-10 * digital/avr/modules/usb:Nicolas Schodet
- do it more the AVR modules way.
2009-04-10 * digital/avr/modules/usb:Nicolas Schodet
- added usb module.
2009-04-10 * digital/avr/modules/usb:Nicolas Schodet
- imported LUFA.
2009-03-30 * digital/avr/common:Nicolas Schodet
- added IO_* macros to define port/bit combinations.
2009-03-14 * digital/io/src, digital/avr/makeJérémy Dufour
- move FSM build rules to a specific Makefile, - use a variable to define the list of FSMs to build.
2009-03-06digital/avr/modules/trace: Store known values for the trace.Nélio Laranjeiro
2009-03-06digital/avr/modules/flash: Fix the code to find the last trace.Nélio Laranjeiro
2009-03-03 * all python:Nicolas Schodet
- fixed missing file headers.
2009-03-03 * all python:Nicolas Schodet
- no longer use sys.path, user should set PYTHONPATH.
2009-03-01digital/avr/modules/flash:Nélio Laranjeiro
Added in the initialize part of the dump memory the possibility to find where is the last trace.
2009-03-01digital/avr/modules/flash: Fix the read and write.Nélio Laranjeiro
Now it verifies the flash status before writing or reading.
2009-02-23digital/avr/modules/flash: Added a function to send commands to dump theNélio Laranjeiro
memory.
2009-02-09 * all python:Nicolas Schodet
- changed tabs to spaces.
2009-02-02digital/avr/modules/trace: Ended the trace module to stop the traces when itNélio Laranjeiro
rolls over the flash memory. (Closes #t60).
2009-01-28tal/avr/modules/trace: Implement the correct version of the trace (See #59).Nélio Laranjeiro
2009-01-28digital/avr/modules/flash: Wrote a flash stub to avoid the card use. (See #59)Nélio Laranjeiro
2008-11-28digital/avr/modules/trace:Nélio Laranjeiro
* Fix the trace_init since the modifications of the functions for the flash memory. * Update the unit tests. * Added the events enumerator generated from the example file in tools/trace/example and update the flood test to use real simulation of the TRACE module.
2008-11-28digital/avr/modules/flash: Fix the macros to compute the actual page size.Nélio Laranjeiro
2008-11-18avr/module/trace: Remove the uninit and the end code.Nélio Laranjeiro
The sector currently in use by the flash was erased, so the end of the sector contains only values equals to 0xFF.
2008-11-10avr/modules/trace: Added a flood test on the trace module.Nélio Laranjeiro
2008-11-10avr/modules/trace: Added some doc.Nélio Laranjeiro
2008-11-10avr/modules/trace: Removed the mail on the header file.Nélio Laranjeiro
2008-11-10avr/modules/trace: unit testsNélio Laranjeiro
* Moved the tests to the test_host (test sub-directory) * Added a target test.
2008-11-10avr/modules/trace: Driver to store traces into the flash memory.Nélio Laranjeiro
This modules is in charge to store values of any type of data in the flash memory.
2008-11-10avr/modules/flash: Fix the flash_sector_next function.Nélio Laranjeiro
It was returning the next sector address instead of the current one.
2008-11-05avr/modules/trace: Tested the TRACE with more than one variable.Nélio Laranjeiro