Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

QoL bugfixes #9

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ __pycache__
# backup files
*~

# Log files
*.log

# built binaries
/build/
**/bin/
Expand Down
22,698 changes: 0 additions & 22,698 deletions .metadata/.tirex/.dependencies/ble5stackerrors.log

This file was deleted.

4,383 changes: 0 additions & 4,383 deletions .metadata/.tirex/.dependencies/coreerrors.log

This file was deleted.

66,768 changes: 0 additions & 66,768 deletions .metadata/.tirex/.dependencies/dmmerrors.log

This file was deleted.

7,107 changes: 0 additions & 7,107 deletions .metadata/.tirex/.dependencies/proprferrors.log

This file was deleted.

55,956 changes: 0 additions & 55,956 deletions .metadata/.tirex/.dependencies/ti154stackerrors.log

This file was deleted.

774 changes: 0 additions & 774 deletions .metadata/.tirex/.dependencies/ti_sidewalkerrors.log

This file was deleted.

89,736 changes: 0 additions & 89,736 deletions .metadata/.tirex/.dependencies/wisunfanerrors.log

This file was deleted.

350,112 changes: 0 additions & 350,112 deletions .metadata/.tirex/.dependencies/zstackerrors.log

This file was deleted.

2 changes: 1 addition & 1 deletion source/ti/display/DisplayUart2.h
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ typedef struct
/*! Index of uart in UART_config[] */
unsigned int uartIdx;
/*! Baud rate for uart */
unsigned int baudRate;
uint32_t baudRate;
/*! Timeout for acquiring semaphore */
unsigned int mutexTimeout;
/*! Buffer for formatting messages */
Expand Down
4 changes: 2 additions & 2 deletions source/ti/zstack/npi/npi_tl.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ static volatile uint32 mrdyPktStamp = 0;
static uint32 txPktCount = 0;

//! \brief NPI Transport Layer receive buffer
static Char npiRxBuf[NPI_TL_BUF_SIZE];
static uint8_t npiRxBuf[NPI_TL_BUF_SIZE];

//! \brief Index to last byte written into NPI Transport Layer receive buffer
static uint16_t npiRxBufTail = 0;
Expand All @@ -105,7 +105,7 @@ static uint16_t npiRxBufTail = 0;
static uint16_t npiRxBufHead = 0;

//! \brief NPI Transport Layer transmit buffer
static Char npiTxBuf[NPI_TL_BUF_SIZE];
static uint8_t npiTxBuf[NPI_TL_BUF_SIZE];

//! \brief Number of bytes in NPI Transport Layer transmit buffer
static uint16_t npiTxBufLen = 0;
Expand Down