diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-11-16 12:30:00 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-11-16 12:30:00 +0000 |
commit | a9f313afa9a65a692718b8609fd47ae1dcb60523 (patch) | |
tree | c43f06af3c44b189de5982af82ee185fbe86d04a /Projects/AVRISP-MKII/makefile | |
parent | 002cd6df49981ad75b2092f2ae6b3efc4e2dd364 (diff) | |
download | lufa-a9f313afa9a65a692718b8609fd47ae1dcb60523.tar.gz lufa-a9f313afa9a65a692718b8609fd47ae1dcb60523.tar.bz2 lufa-a9f313afa9a65a692718b8609fd47ae1dcb60523.zip |
Slow AVRISP-MKII clone PDI/TPI programming speed back to 250KHz due to issues with the XPLAINBridge when PDI programming at faster rates.
Speed up XMEGANVM_WaitWhileNVMControllerBusy() by preloading the status register address into the pointer register of the target's NVM controller and then reading via a faster indirect load command.
Diffstat (limited to 'Projects/AVRISP-MKII/makefile')
-rw-r--r-- | Projects/AVRISP-MKII/makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Projects/AVRISP-MKII/makefile b/Projects/AVRISP-MKII/makefile index 5135722fd..28f893956 100644 --- a/Projects/AVRISP-MKII/makefile +++ b/Projects/AVRISP-MKII/makefile @@ -60,13 +60,13 @@ # MCU name -MCU = at90usb1287 +MCU = at90usb162 # Target board (see library "Board Types" documentation, NONE for projects not requiring # LUFA board drivers). If USER is selected, put custom board drivers in a directory called # "Board" inside the application directory. -BOARD = USBKEY +BOARD = USBTINYMKII # Processor frequency. @@ -80,7 +80,7 @@ BOARD = USBKEY # does not *change* the processor frequency - it should merely be updated to # reflect the processor speed set externally so that the code can use accurate # software delays. -F_CPU = 8000000 +F_CPU = 16000000 # Input clock frequency. |