Skip to content

Commit

Permalink
Merge pull request #31 from technobly/ota-256-chunk-fix
Browse files Browse the repository at this point in the history
Fixed OTA 256 byte chunk issue
  • Loading branch information
Zachary Crockett committed Jul 28, 2014
2 parents 160e2df + d16692c commit 9e611a4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CC3000_Host_Driver/cc3000_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ extern void SimpleLinkWaitEvent(UINT16 usOpcode, void *pRetParams);
//
//*****************************************************************************

extern void SimpleLinkWaitData(UINT8 *pBuf, UINT8 *from, UINT8 *fromlen);
extern void SimpleLinkWaitData(UINT8 *pBuf, UINT8 *from, INT32 *fromlen);

//*****************************************************************************
//
Expand Down
4 changes: 2 additions & 2 deletions CC3000_Host_Driver/evnt_handler.c
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ void hci_unsol_handle_patch_request(CHAR *event_hdr)
//*****************************************************************************


UINT8 * hci_event_handler(void *pRetParams, UINT8 *from, UINT8 *fromlen)
UINT8 * hci_event_handler(void *pRetParams, UINT8 *from, INT32 *fromlen)
{
UINT8 *pucReceivedData, ucArgsize;
UINT16 usLength;
Expand Down Expand Up @@ -971,7 +971,7 @@ void SimpleLinkWaitEvent(UINT16 usOpcode, void *pRetParams)
//
//*****************************************************************************

void SimpleLinkWaitData(UINT8 *pBuf, UINT8 *from, UINT8 *fromlen)
void SimpleLinkWaitData(UINT8 *pBuf, UINT8 *from, INT32 *fromlen)
{
// In the blocking implementation the control to caller will be returned only
// after the end of current transaction, i.e. only after data will be received
Expand Down
2 changes: 1 addition & 1 deletion CC3000_Host_Driver/evnt_handler.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ extern "C" {
//! event handler from global array of handlers pointers
//
//*****************************************************************************
extern UINT8 *hci_event_handler(void *pRetParams, UINT8 *from, UINT8 *fromlen);
extern UINT8 *hci_event_handler(void *pRetParams, UINT8 *from, INT32 *fromlen);

//*****************************************************************************
//
Expand Down

0 comments on commit 9e611a4

Please sign in to comment.