From 6d1adf7339b71952d1ba8616af9422fbc7333eb1 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Tue, 25 Aug 2009 08:09:49 +0000 Subject: Updated Benito project -- added hardware interrupt and software buffering for serial data reception to prevent missed characters, condensed pulse generation counters into a struct for clarity. Added check to CDC_Device_BytesReceived() to ensure 0 is returned when device is not enumerated to a host. Move AVRISP project's V2Protocol_DelayMS() function to be static inline, as it is now very minimal. Added extra project doxygen documentation. --- Projects/Incomplete/AVRISP/Lib/V2ProtocolTarget.h | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'Projects/Incomplete/AVRISP/Lib/V2ProtocolTarget.h') diff --git a/Projects/Incomplete/AVRISP/Lib/V2ProtocolTarget.h b/Projects/Incomplete/AVRISP/Lib/V2ProtocolTarget.h index 2156225a5..6dce59d6c 100644 --- a/Projects/Incomplete/AVRISP/Lib/V2ProtocolTarget.h +++ b/Projects/Incomplete/AVRISP/Lib/V2ProtocolTarget.h @@ -48,11 +48,22 @@ #include "V2ProtocolParams.h" /* Macros: */ + /** Total number of allowable ISP programming speeds supported by the device */ + #define TOTAL_PROGRAMMING_SPEEDS 7 + + /** Timeout in milliseconds of target busy-wait loops waiting for a command to complete */ #define TARGET_BUSY_TIMEOUT_MS 150 - + /* External Variables: */ extern uint32_t CurrentAddress; + /* Inline Functions: */ + static inline void V2Protocol_DelayMS(uint8_t MS) + { + TCNT0 = 0; + while (TCNT0 < MS); + } + /* Function Prototypes: */ uint8_t V2Protocol_GetSPIPrescalerMask(void); void V2Protocol_ChangeTargetResetLine(bool ResetTarget); -- cgit v1.2.3