Commit Graph

  • 7d51e51c79 Increased throughput of the USBtoSerial demo on systems that send multiple bytes per packet (thanks to Opendous Inc.). Dean Camera 2010-03-16 12:14:09 +00:00
  • 2b74b517ea Don't enable the pullup on the target /RESET line in the AVRISP project for PDI mode - clearing the XMEGA's reset control register twice is enough to release it from reset. Possible silicon bug, since the official Atmel programmers have the same issue. Dean Camera 2010-03-16 12:09:22 +00:00
  • 39d56aeffe Fixed PDI programming mode in the AVRISP programmer project not exiting programming mode correctly (clear target Reset key twice, set /RESET pin to pullup). Dean Camera 2010-03-16 11:47:11 +00:00
  • b2bdfe4377 Improve documentation for the ADC and TWI drivers. Dean Camera 2010-03-15 05:38:29 +00:00
  • 4f9dd142e7 Fixed ADC routines not correctly returning the last result when multiple channels were read. Dean Camera 2010-03-13 10:14:51 +00:00
  • aca7863350 Added ENABLE_TELNET_SERVER compile time option to the Webserver project to disable the TELNET server if desired. Dean Camera 2010-03-10 12:48:20 +00:00
  • 92418433a5 Fix incorrect LED mask name in the Webserver project. Dean Camera 2010-03-09 13:22:51 +00:00
  • ce260ae786 Webserver project now uses the board LEDs to indicate the current IP configuration state. Dean Camera 2010-03-09 05:15:08 +00:00
  • a61c7f671d Minor documentation updates. Dean Camera 2010-03-01 02:39:02 +00:00
  • 634abab38a Fix TWI driver not aborting when faced with no response after attempting to address a device on the bus. Dean Camera 2010-02-25 02:47:42 +00:00
  • c0c982df7a Added a timeout value to the TWI_StartTransmission() function, within which the addressed device must respond. Dean Camera 2010-02-24 09:49:19 +00:00
  • 14a5a94084 Fix incorrect error when directly including the LUFA internal USB library components. Dean Camera 2010-02-24 07:01:59 +00:00
  • 071fd8ce53 Revert changes made for the partial port to the AVR32 architecture. Dean Camera 2010-02-24 06:58:23 +00:00
  • a7aaa45ec4 More AVR32 achitecture ports. Dean Camera 2010-02-24 06:21:46 +00:00
  • 3702ba1fb3 More porting of the USB core to the AVR32. Dean Camera 2010-02-23 14:46:11 +00:00
  • 0e6d5cf5b4 Start porting the USB core to the AVR32 UC3B. Dean Camera 2010-02-23 07:13:29 +00:00
  • e11fddfe66 Update Temperature board driver to be AVR32 compatible when the ADC peripheral driver is eventually ported. Make architecture includes explicit for both the AVR32 and the AVR8, to make way for future architecture ports. Dean Camera 2010-02-23 03:51:17 +00:00
  • c24027f3b5 Fixed software PDI/TPI programming mode in the AVRISP project not correctly toggling just the clock pin. Dean Camera 2010-02-23 01:03:27 +00:00
  • 2590452104 Change over board hardware drivers to use the custom uintN_t and intN_t native word size types. Dean Camera 2010-02-22 12:58:40 +00:00
  • d2ed97e34b Update manual pages to reference unfinished AVR32 port, add port status to the Future Changes page. Dean Camera 2010-02-22 12:45:52 +00:00
  • 99a45fa97d Add start of an AVR32 SPI driver. Dean Camera 2010-02-22 12:36:08 +00:00
  • ff8e0ea2d6 Rename AVRU4U6U9 peripheral driver directory to AVR8. Dean Camera 2010-02-22 12:05:36 +00:00
  • 1d8bb8f9bc Make SPI and USART peripheral dispatch driver headers in preparation for a set of AVR32 peripheral drivers. Dean Camera 2010-02-22 12:01:09 +00:00
  • aae20139b9 Add drivers for the EVK1101 - begin full port to the AVR32 UC3B line of AVRs. Dean Camera 2010-02-22 11:44:34 +00:00
  • d2851b3351 Oops - need to revert changes made to ease testing of the software PDI programming mode. Dean Camera 2010-02-21 22:15:52 +00:00
  • 5e12d436fa Remove dual ISR for software PDI mode, use a single ISR instead to reduce code complexity. Dean Camera 2010-02-21 22:11:49 +00:00
  • e322f14620 More fixes to the AVRISP command timeout system so that it should no longer lock up while processing command no matter what the conditions. Dean Camera 2010-02-21 06:26:33 +00:00
  • 12a01ed72d Increased the speed of both software and hardware TPI/PDI programming modes of the AVRISP project. Dean Camera 2010-02-21 05:44:12 +00:00
  • 10b9394a8b Oops - missed a few references to the old global TimeoutMSRemaining counter in ISPTarget.c of the AVRISP-MKII clone project. Dean Camera 2010-02-20 12:17:48 +00:00
  • ce8d0424b1 AVRISP programmer project now has a more robust timeout system, allowing for a doubling of the software USART speed for PDI and TPI programming. Dean Camera 2010-02-19 05:17:41 +00:00
  • 04d40897cf Commit for the 100219 release. Dean Camera 2010-02-19 00:07:22 +00:00
  • 42b850f2b9 Use a temporary variable to hold the current URI length in the Webserver, rather than calling strlen() multiple times on an unchanged buffer. Clean up uip-split.c. Dean Camera 2010-02-18 05:33:35 +00:00
  • 012628f635 Turn OFF double banking in the Webserver demo - leaving it on seems to destroy the system throughput. Dean Camera 2010-02-18 05:10:24 +00:00
  • 3b6987bca3 Add uIP-split code to the Webserver project, so that each packet is split in half to avoid the delayed-ACK problem when communicating with other devices. Condense HTTP server code, so that the HTTP headers are all sent from the one state. Make default filename append to any directory URI, rather than just the root directory. Dean Camera 2010-02-18 02:19:43 +00:00
  • c77b30e9e6 Clean up XPLAINBridge code. Dean Camera 2010-02-16 13:12:59 +00:00
  • 2b51944a4b Make sure the button report set masks use OR in all circumstances, to prevent user confusion. While the first set of the buttons report item can be a direct assignment, it is not immediately clear to new developers why this is the case. Dean Camera 2010-02-16 12:25:31 +00:00
  • 015956baba Oops - missing brackets in the declaration of a string in TELNETServerApp.c. Dean Camera 2010-02-15 13:50:04 +00:00
  • 96a12cd12c Add missing TWI_Init() call to the TemperatureDataLogger project. Make DUMMY_RTC compile time option the default, so that it works correctly on the USBKEY and other Atmel boards out of the box. Dean Camera 2010-02-15 13:40:53 +00:00
  • 67cb070810 Fix HID Host Class driver sending incorrect ReportType values to the device when issuing requests via the control pipe. Dean Camera 2010-02-14 22:13:11 +00:00
  • de0ccb3d09 Add NO_VTARGET_DETECT compile time option to the AVRISP-MKII clone project, to disable VTARGET detection on AVR models with an on-chip ADC. Dean Camera 2010-02-13 03:21:28 +00:00
  • c6f21fde62 Speed up Webserver demo data rate by not sending a full ethernet frame each time, preventing the receiver from using a delayed ACK scheme which slows down the connection. TELNET server cleanup. Dean Camera 2010-02-12 07:54:28 +00:00
  • 8154331da6 Move DHCP negotiation timer into the DHCP connection application state structure, so that each connection gets its own timeout counter (only one connection currently used, but this way is more correct). Add const correctness to static data in the TELNETServerApp.c and HTTPServerApp.c files. Dean Camera 2010-02-12 07:27:26 +00:00
  • 41ef05a6e5 Fix DHCPClient init code in the Webserver project writing to the incorrect application state location (thanks to Mike Alexander). Dean Camera 2010-02-12 05:05:03 +00:00
  • a71820b259 Fixed accuracy of the SERIAL_UBBRVAL() and SERIAL_2X_UBBRVAL() macros for higher baudrates (thanks to Renaud Cerrato). Dean Camera 2010-02-12 05:01:11 +00:00
  • d49cc0f783 Add more include protection macros to give the user warnings when they try to manually include private driver header files, instead of the public driver headers. Dean Camera 2010-02-11 04:05:02 +00:00
  • 3a2c1db675 Fixed lack of SECTION ERASE command in TPI programming mode of the AVRISP project preventing fuses from being cleared. Dean Camera 2010-02-10 04:07:06 +00:00
  • ab195ab1da Added .5MHz recovery clock to the AVRISP programmer project when in ISP programming mode to correct mis-set fuses. Dean Camera 2010-02-10 04:02:10 +00:00
  • 35a0fe9384 Fixed USB_GetHIDReportSize() returning the number of bits in the specified report instead of bytes. Dean Camera 2010-02-09 12:30:51 +00:00
  • 3ab0b3a027 Fix LowLevel Keyboard demo -- accidentally trying to dereference a uint8_t type in ProcessLEDReport(). Dean Camera 2010-02-08 03:32:31 +00:00
  • 7ae91099e9 Fix AVRISP-MKII clone project's TPI Chip Erase command processing - ensure erase location is the high byte in the given address space, check NVMBUSY for completion rather than the NVM Bus Enable bit. Dean Camera 2010-02-08 03:16:09 +00:00
  • 6a48efd3bd Split out LED report processing from the host into a seperate routine in the LowLevel KeyboardMouse device demo, to avoid duplicate code. Dean Camera 2010-02-07 14:03:48 +00:00
  • 0c5d6f5f97 Added Keyboard LED report masks (KEYBOARD_LED_*) to the HID class driver and demos. Dean Camera 2010-02-07 13:56:36 +00:00
  • 1fdc0e664e Make Webserver allow HTTP requests for files with up to 50 characters in the path instead of 30, to be in synch with the project documentation. Dean Camera 2010-02-07 10:46:02 +00:00
  • 196724c62d Added keyboard modifier masks (HID_KEYBOARD_MODIFER_*) to the HID class driver and Keyboard demos. Dean Camera 2010-02-07 07:31:53 +00:00
  • 7602566a05 Fixed SerialStream driver not setting stdin to the created serial stream. Dean Camera 2010-02-05 07:27:01 +00:00
  • 658234a0b0 Oops - serial stream driver should return _FDEV_EOF when no data has been received, not EOF. Dean Camera 2010-02-05 06:44:10 +00:00
  • 6ba0b860cc Fixed SerialStream driver blocking while waiting for characters to be received instead of returning EOF. Dean Camera 2010-02-05 03:59:42 +00:00
  • 15f84bb8f5 New BOARD value option BOARD_NONE (equivelent to not specifying BOARD) which will remove all board hardware drivers which do not adversely affect the code operation (currently only the LEDs driver). Dean Camera 2010-02-04 02:27:09 +00:00
  • f4f44f9fc1 Re-add Webserver uIP application polling, apply patch to uIP by Andrew Ruder to fix corrupt TCP streams when multiple applications are used and the applications are polled for more data. Dean Camera 2010-02-03 14:09:56 +00:00
  • 7d3ed40070 Fix TELNET server locking up if an invalid command was issued. Dean Camera 2010-02-03 13:08:37 +00:00
  • b9cf4815e5 Disable uIP connection polling for now - this seems to corrupt the buffers. Dean Camera 2010-02-03 11:31:59 +00:00
  • 16ea5aa7a2 Add a TELNET server to the webserver project, which currently can list active TCP connections. Dean Camera 2010-02-03 10:39:33 +00:00
  • 77e86e7d82 Exlude the "INCLUDE_FROM_*" macros from the individual project's documentation. Dean Camera 2010-02-03 00:57:49 +00:00
  • 08e8d6393e Exclude FATFs from the Webserver project documentation. Rename the functions in the HTTPServerApp.c/.h files so that they use the correct "HTTPServerApp_" prefix, and not "Webserver_". Dean Camera 2010-02-03 00:48:06 +00:00
  • a96d77eca7 Add documentation to the USB Class Drivers module on how to use the Host mode class drivers. Dean Camera 2010-02-02 14:02:18 +00:00
  • 53eca61d02 Minor fixups to the documentation and preprocessor tokens. Dean Camera 2010-02-02 13:29:07 +00:00
  • f979fd36be Remove now unused conf directory from the uIP stack in the Webserver project. Dean Camera 2010-02-02 12:56:29 +00:00
  • 84e1241f80 Replace the Webserver demo's uIP with the latest code ripped from the Contiki project by Adam Dunkels. Dean Camera 2010-02-02 12:51:05 +00:00
  • 1008260985 Make packet processing code in the Webserver project a bit neater using a switch statement instead of an if-else-if chain. Dean Camera 2010-02-02 05:56:47 +00:00
  • 5687ac7316 Fix TPI mode chip erase code not properly erasing the target memory space. Dean Camera 2010-02-02 04:33:58 +00:00
  • 8d49480891 Oops - new Write Word alignment code in the TPI programming function means that the WriteBuffer parameter is no longer const. Dean Camera 2010-02-02 03:46:49 +00:00
  • ec6fbb219f Make TPI writes add a dummy high byte if the data isn't word-aligned. Dean Camera 2010-02-02 03:27:28 +00:00
  • b736a5ef2b Make TPI programming protocol program in words, not bytes to satisfy the datasheet conditions. Dean Camera 2010-02-02 03:22:45 +00:00
  • 4d246a82cb Fixed incorrect values of USB_CONFIG_ATTR_SELFPOWERED and USB_CONFIG_ATTR_REMOTEWAKEUP tokens (thanks to Claus Christensen). Dean Camera 2010-02-01 12:35:48 +00:00
  • a4ebf4e920 Make board specific and device peripheral specific drivers' file documentation copy over to the module documentation, so that it is visible in the normal module view of the library documentation. Dean Camera 2010-02-01 10:34:07 +00:00
  • 2ae397dc2f Fixed STK525 Dataflash driver using incorrect bit-shifting for Dataflash addresses (thanks to Tim Mitchell). Dean Camera 2010-02-01 10:09:18 +00:00
  • 9e7ffcb014 Make AVRISP XPROG function parameters const where possible. Dean Camera 2010-02-01 05:34:59 +00:00
  • 5f363996e3 Fixed issues with EEPROM and FLASH ISP programming in the AVRISP project. Dean Camera 2010-02-01 03:42:10 +00:00
  • b6a4584a19 Fixed Pipe_IsEndpointBound() function not taking the endpoint's direction into account. Dean Camera 2010-02-01 01:27:00 +00:00
  • bb1a036f09 Clean up HTTP webserver code in the Webserver project, so that it follows the uIP application structure guidelines and uses cleaner state machine based code. Dean Camera 2010-01-31 14:18:03 +00:00
  • 331e8dece6 Use _delay_us() function in the XPROGTarget.c file to ensure timing requirements are met, rather than a fixed number of NOPs. Dean Camera 2010-01-31 12:33:04 +00:00
  • 75d27f8ef0 Oops - PDI handshake delay was too long, causing the device's /RESET functionality to be re-enabled. Dean Camera 2010-01-31 12:25:53 +00:00
  • 97f7cd947b Better HTTP GET parsing in the Webserver demo, add application polling. Dean Camera 2010-01-31 04:23:55 +00:00
  • e8b8ed2bad Add TCP retransmission support to the HTTP webserver in the Webserver project, so that lost segments are retransmitted as needed. Dean Camera 2010-01-29 09:21:38 +00:00
  • 254a0c1ae8 Update driver INF files - change manufacturer name from the original template's name to the Four Walled Cubicle website. Dean Camera 2010-01-29 06:32:20 +00:00
  • a114878209 Oops - TPI programming is broken in the AVRISP project because the busy-flag check wasn't inverting the result. Dean Camera 2010-01-29 06:02:02 +00:00
  • 872f61ff53 Fix TPI communications in the AVRISP project when bit-banged USART mode is selected. Dean Camera 2010-01-29 05:31:25 +00:00
  • fa3135d485 Add MIME type handling to the Webserver project, so that files of different types (e.g. images) can be served out to HTTP clients. Dean Camera 2010-01-29 02:43:07 +00:00
  • e81a4c950f Removed the stream example code from the Low Level VirtualSerial demos, as they were buggy and only served to add clutter. Dean Camera 2010-01-28 14:12:26 +00:00
  • 1b59f561ed Second fix to Webserver project's makefile for the FATFs path case to fix *nix builds. Dean Camera 2010-01-28 13:25:50 +00:00
  • e4674aecb7 Delete FATFs .lst files from the Webserver project, accidentally committed. Dean Camera 2010-01-28 13:24:04 +00:00
  • 1babe52682 Oops - fix path case in the Webserver project makefile, to fix *nix builds. Dean Camera 2010-01-28 13:23:05 +00:00
  • 5f776f4785 Fix up project documentation files' overview tables, so that multiple items occupy multiple lines in the same cell, rather than multiple cells. Dean Camera 2010-01-28 13:17:36 +00:00
  • d11ed10c53 Add FatFS library to the Webserver project, extend the HTTP server so that it now serves files from the Dataflash. Add Mass Storage device mode class driver so that files can be loaded to the board Dataflash when inserted into a PC. Dean Camera 2010-01-28 12:47:35 +00:00
  • d26a9ed5fd Be doubly-certain that the incomming CDC class driver's endpoint/pipe is flushed only once when the bank is empty. Dean Camera 2010-01-28 06:37:26 +00:00
  • cec699ac59 Clean up Webserver project - add more Doxygen documentation for the new DHCP client functions and defines. Dean Camera 2010-01-27 13:45:08 +00:00
  • a960e4b3b2 Add DHCP server to the Webserver demo for automatic network configuration. Correct uIP timer clock not tracking the correct timespan. Dean Camera 2010-01-27 13:15:49 +00:00
  • 1aeb5056d6 Ensure TPI enable timing requirements are met in AVRISP-MKII programmer. Remove invalid code in the TPI read/write functions. Dean Camera 2010-01-27 03:45:15 +00:00
  • 2059fd8b1a Manually pull PDI clock pin high for 1ms before disabling PDI mode in the AVRISP-MKII project, to ensure that the PDI bus is disabled in the target and /RESET functionality restored. Dean Camera 2010-01-27 02:59:54 +00:00
  • eb99b1ec90 Exclude host application directories from the Doxygen input source file directories. Dean Camera 2010-01-25 13:20:46 +00:00