mirror of https://github.com/rusefi/openblt.git
Refs #1405. Tuned XCP packet sizes for RS232 and TCP/IP, resulting in improved throughput.
git-svn-id: https://svn.code.sf.net/p/openblt/code/trunk@955 5dc33758-31d5-4daf-9ae8-b24bf3d40d73
This commit is contained in:
parent
232d60793b
commit
313202ae03
|
@ -56,24 +56,24 @@
|
|||
/****************************************************************************************
|
||||
* C O M M U N I C A T I O N I N T E R F A C E C O N F I G U R A T I O N
|
||||
****************************************************************************************/
|
||||
/* The UART communication interface is selected by setting the BOOT_COM_UART_ENABLE
|
||||
* configurable to 1. Configurable BOOT_COM_UART_BAUDRATE selects the communication speed
|
||||
/* The RS232 communication interface is selected by setting the BOOT_COM_RS232_ENABLE
|
||||
* configurable to 1. Configurable BOOT_COM_RS232_BAUDRATE selects the communication speed
|
||||
* in bits/second. The maximum amount of data bytes in a message for data transmission
|
||||
* and reception is set through BOOT_COM_UART_TX_MAX_DATA and BOOT_COM_UART_RX_MAX_DATA,
|
||||
* and reception is set through BOOT_COM_RS232_TX_MAX_DATA and BOOT_COM_RS232_RX_MAX_DATA,
|
||||
* respectively. It is common for a microcontroller to have more than 1 UART interface
|
||||
* on board. The zero-based BOOT_COM_UART_CHANNEL_INDEX selects the UART interface.
|
||||
* on board. The zero-based BOOT_COM_RS232_CHANNEL_INDEX selects the UART interface.
|
||||
*
|
||||
*/
|
||||
/** \brief Enable/disable UART transport layer. */
|
||||
#define BOOT_COM_RS232_ENABLE (1)
|
||||
#define BOOT_COM_RS232_ENABLE (1)
|
||||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (0)
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (0)
|
||||
|
||||
/* The CAN communication interface is selected by setting the BOOT_COM_CAN_ENABLE
|
||||
* configurable to 1. Configurable BOOT_COM_CAN_BAUDRATE selects the communication speed
|
||||
|
|
|
@ -56,24 +56,24 @@
|
|||
/****************************************************************************************
|
||||
* C O M M U N I C A T I O N I N T E R F A C E C O N F I G U R A T I O N
|
||||
****************************************************************************************/
|
||||
/* The UART communication interface is selected by setting the BOOT_COM_UART_ENABLE
|
||||
* configurable to 1. Configurable BOOT_COM_UART_BAUDRATE selects the communication speed
|
||||
/* The RS232 communication interface is selected by setting the BOOT_COM_RS232_ENABLE
|
||||
* configurable to 1. Configurable BOOT_COM_RS232_BAUDRATE selects the communication speed
|
||||
* in bits/second. The maximum amount of data bytes in a message for data transmission
|
||||
* and reception is set through BOOT_COM_UART_TX_MAX_DATA and BOOT_COM_UART_RX_MAX_DATA,
|
||||
* and reception is set through BOOT_COM_RS232_TX_MAX_DATA and BOOT_COM_RS232_RX_MAX_DATA,
|
||||
* respectively. It is common for a microcontroller to have more than 1 UART interface
|
||||
* on board. The zero-based BOOT_COM_UART_CHANNEL_INDEX selects the UART interface.
|
||||
* on board. The zero-based BOOT_COM_RS232_CHANNEL_INDEX selects the UART interface.
|
||||
*
|
||||
*/
|
||||
/** \brief Enable/disable UART transport layer. */
|
||||
#define BOOT_COM_RS232_ENABLE (1)
|
||||
#define BOOT_COM_RS232_ENABLE (1)
|
||||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (0)
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (0)
|
||||
|
||||
/* The CAN communication interface is selected by setting the BOOT_COM_CAN_ENABLE
|
||||
* configurable to 1. Configurable BOOT_COM_CAN_BAUDRATE selects the communication speed
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -110,9 +110,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. Note that the LPUART
|
||||
* peripherals come after the U(S)ART peripherals.
|
||||
*/
|
||||
|
|
|
@ -110,9 +110,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. Note that the LPUART
|
||||
* peripherals come after the U(S)ART peripherals.
|
||||
*/
|
||||
|
|
|
@ -110,9 +110,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. Note that the LPUART
|
||||
* peripherals come after the U(S)ART peripherals.
|
||||
*/
|
||||
|
|
|
@ -110,9 +110,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. Note that the LPUART
|
||||
* peripherals come after the U(S)ART peripherals.
|
||||
*/
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (9600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (9600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (0)
|
||||
|
||||
|
@ -92,9 +92,9 @@
|
|||
/** \brief Enable/disable the NET transport layer. */
|
||||
#define BOOT_COM_NET_ENABLE (1)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (129)
|
||||
/** \brief Configure the port that the TCP/IP server listens on */
|
||||
#define BOOT_COM_NET_PORT (1000)
|
||||
/** \brief Enable/disable DHCP client for automatically obtaining an IP address. */
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (0)
|
||||
|
||||
|
@ -92,9 +92,9 @@
|
|||
/** \brief Enable/disable the NET transport layer. */
|
||||
#define BOOT_COM_NET_ENABLE (1)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (129)
|
||||
/** \brief Configure the port that the TCP/IP server listens on */
|
||||
#define BOOT_COM_NET_PORT (1000)
|
||||
/** \brief Enable/disable DHCP client for automatically obtaining an IP address. */
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (0)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (0)
|
||||
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (2)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (2)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (2)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (2)
|
||||
|
||||
|
|
|
@ -56,24 +56,24 @@
|
|||
/****************************************************************************************
|
||||
* C O M M U N I C A T I O N I N T E R F A C E C O N F I G U R A T I O N
|
||||
****************************************************************************************/
|
||||
/* The UART communication interface is selected by setting the BOOT_COM_UART_ENABLE
|
||||
* configurable to 1. Configurable BOOT_COM_UART_BAUDRATE selects the communication speed
|
||||
/* The RS232 communication interface is selected by setting the BOOT_COM_RS232_ENABLE
|
||||
* configurable to 1. Configurable BOOT_COM_RS232_BAUDRATE selects the communication speed
|
||||
* in bits/second. The maximum amount of data bytes in a message for data transmission
|
||||
* and reception is set through BOOT_COM_UART_TX_MAX_DATA and BOOT_COM_UART_RX_MAX_DATA,
|
||||
* and reception is set through BOOT_COM_RS232_TX_MAX_DATA and BOOT_COM_RS232_RX_MAX_DATA,
|
||||
* respectively. It is common for a microcontroller to have more than 1 UART interface
|
||||
* on board. The zero-based BOOT_COM_UART_CHANNEL_INDEX selects the UART interface.
|
||||
* on board. The zero-based BOOT_COM_RS232_CHANNEL_INDEX selects the UART interface.
|
||||
*
|
||||
*/
|
||||
/** \brief Enable/disable UART transport layer. */
|
||||
#define BOOT_COM_RS232_ENABLE (1)
|
||||
#define BOOT_COM_RS232_ENABLE (1)
|
||||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
/* The CAN communication interface is selected by setting the BOOT_COM_CAN_ENABLE
|
||||
* configurable to 1. Configurable BOOT_COM_CAN_BAUDRATE selects the communication speed
|
||||
|
|
|
@ -56,24 +56,24 @@
|
|||
/****************************************************************************************
|
||||
* C O M M U N I C A T I O N I N T E R F A C E C O N F I G U R A T I O N
|
||||
****************************************************************************************/
|
||||
/* The UART communication interface is selected by setting the BOOT_COM_UART_ENABLE
|
||||
* configurable to 1. Configurable BOOT_COM_UART_BAUDRATE selects the communication speed
|
||||
/* The RS232 communication interface is selected by setting the BOOT_COM_RS232_ENABLE
|
||||
* configurable to 1. Configurable BOOT_COM_RS232_BAUDRATE selects the communication speed
|
||||
* in bits/second. The maximum amount of data bytes in a message for data transmission
|
||||
* and reception is set through BOOT_COM_UART_TX_MAX_DATA and BOOT_COM_UART_RX_MAX_DATA,
|
||||
* and reception is set through BOOT_COM_RS232_TX_MAX_DATA and BOOT_COM_RS232_RX_MAX_DATA,
|
||||
* respectively. It is common for a microcontroller to have more than 1 UART interface
|
||||
* on board. The zero-based BOOT_COM_UART_CHANNEL_INDEX selects the UART interface.
|
||||
* on board. The zero-based BOOT_COM_RS232_CHANNEL_INDEX selects the UART interface.
|
||||
*
|
||||
*/
|
||||
/** \brief Enable/disable UART transport layer. */
|
||||
#define BOOT_COM_RS232_ENABLE (1)
|
||||
#define BOOT_COM_RS232_ENABLE (1)
|
||||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
/* The CAN communication interface is selected by setting the BOOT_COM_CAN_ENABLE
|
||||
* configurable to 1. Configurable BOOT_COM_CAN_BAUDRATE selects the communication speed
|
||||
|
|
|
@ -83,9 +83,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -83,9 +83,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -83,9 +83,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -83,9 +83,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -72,9 +72,9 @@
|
|||
/** \brief Enable/disable the NET transport layer. */
|
||||
#define BOOT_COM_NET_ENABLE (1)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (129)
|
||||
/** \brief Configure the port that the TCP/IP server listens on */
|
||||
#define BOOT_COM_NET_PORT (1000)
|
||||
/** \brief Enable/disable DHCP client for automatically obtaining an IP address. */
|
||||
|
@ -165,9 +165,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (2)
|
||||
|
||||
|
|
|
@ -72,9 +72,9 @@
|
|||
/** \brief Enable/disable the NET transport layer. */
|
||||
#define BOOT_COM_NET_ENABLE (1)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (129)
|
||||
/** \brief Configure the port that the TCP/IP server listens on */
|
||||
#define BOOT_COM_NET_PORT (1000)
|
||||
/** \brief Enable/disable DHCP client for automatically obtaining an IP address. */
|
||||
|
@ -165,9 +165,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (2)
|
||||
|
||||
|
|
|
@ -72,9 +72,9 @@
|
|||
/** \brief Enable/disable the NET transport layer. */
|
||||
#define BOOT_COM_NET_ENABLE (1)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (129)
|
||||
/** \brief Configure the port that the TCP/IP server listens on */
|
||||
#define BOOT_COM_NET_PORT (1000)
|
||||
/** \brief Enable/disable DHCP client for automatically obtaining an IP address. */
|
||||
|
@ -165,9 +165,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (2)
|
||||
|
||||
|
|
|
@ -72,9 +72,9 @@
|
|||
/** \brief Enable/disable the NET transport layer. */
|
||||
#define BOOT_COM_NET_ENABLE (1)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (129)
|
||||
/** \brief Configure the port that the TCP/IP server listens on */
|
||||
#define BOOT_COM_NET_PORT (1000)
|
||||
/** \brief Enable/disable DHCP client for automatically obtaining an IP address. */
|
||||
|
@ -165,9 +165,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (2)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. Note that the LPUART
|
||||
* peripherals come after the U(S)ART peripherals.
|
||||
*/
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. Note that the LPUART
|
||||
* peripherals come after the U(S)ART peripherals.
|
||||
*/
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. Note that the LPUART
|
||||
* peripherals come after the U(S)ART peripherals.
|
||||
*/
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. Note that the LPUART
|
||||
* peripherals come after the U(S)ART peripherals.
|
||||
*/
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. Note that the LPUART
|
||||
* peripherals come after the U(S)ART peripherals.
|
||||
*/
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. Note that the LPUART
|
||||
* peripherals come after the U(S)ART peripherals.
|
||||
*/
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. Note that the LPUART
|
||||
* peripherals come after the U(S)ART peripherals.
|
||||
*/
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. Note that the LPUART
|
||||
* peripherals come after the U(S)ART peripherals.
|
||||
*/
|
||||
|
|
|
@ -82,9 +82,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. Note that the LPUART
|
||||
* peripherals come after the U(S)ART peripherals.
|
||||
*/
|
||||
|
|
|
@ -82,9 +82,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. Note that the LPUART
|
||||
* peripherals come after the U(S)ART peripherals.
|
||||
*/
|
||||
|
|
|
@ -82,9 +82,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. Note that the LPUART
|
||||
* peripherals come after the U(S)ART peripherals.
|
||||
*/
|
||||
|
|
|
@ -82,9 +82,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. Note that the LPUART
|
||||
* peripherals come after the U(S)ART peripherals.
|
||||
*/
|
||||
|
|
|
@ -69,9 +69,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (0)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (0)
|
||||
|
||||
|
@ -120,9 +120,9 @@
|
|||
/** \brief Enable/disable the NET transport layer. */
|
||||
#define BOOT_COM_NET_ENABLE (1)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (129)
|
||||
/** \brief Configure the port that the TCP/IP server listens on */
|
||||
#define BOOT_COM_NET_PORT (1000)
|
||||
/** \brief Enable/disable DHCP client for automatically obtaining an IP address. */
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (0)
|
||||
|
||||
|
@ -120,9 +120,9 @@
|
|||
/** \brief Enable/disable the NET transport layer. */
|
||||
#define BOOT_COM_NET_ENABLE (1)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (129)
|
||||
/** \brief Configure the port that the TCP/IP server listens on */
|
||||
#define BOOT_COM_NET_PORT (1000)
|
||||
/** \brief Enable/disable DHCP client for automatically obtaining an IP address. */
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (0)
|
||||
|
||||
|
@ -120,9 +120,9 @@
|
|||
/** \brief Enable/disable the NET transport layer. */
|
||||
#define BOOT_COM_NET_ENABLE (1)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (129)
|
||||
/** \brief Configure the port that the TCP/IP server listens on */
|
||||
#define BOOT_COM_NET_PORT (1000)
|
||||
/** \brief Enable/disable DHCP client for automatically obtaining an IP address. */
|
||||
|
|
|
@ -110,9 +110,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (2)
|
||||
|
||||
|
|
|
@ -110,9 +110,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (2)
|
||||
|
||||
|
|
|
@ -110,9 +110,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (2)
|
||||
|
||||
|
|
|
@ -110,9 +110,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (2)
|
||||
|
||||
|
|
|
@ -72,9 +72,9 @@
|
|||
/** \brief Enable/disable the NET transport layer. */
|
||||
#define BOOT_COM_NET_ENABLE (1)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (129)
|
||||
/** \brief Configure the port that the TCP/IP server listens on */
|
||||
#define BOOT_COM_NET_PORT (1000)
|
||||
/** \brief Enable/disable DHCP client for automatically obtaining an IP address. */
|
||||
|
@ -125,9 +125,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (2)
|
||||
|
||||
|
|
|
@ -72,9 +72,9 @@
|
|||
/** \brief Enable/disable the NET transport layer. */
|
||||
#define BOOT_COM_NET_ENABLE (1)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (129)
|
||||
/** \brief Configure the port that the TCP/IP server listens on */
|
||||
#define BOOT_COM_NET_PORT (1000)
|
||||
/** \brief Enable/disable DHCP client for automatically obtaining an IP address. */
|
||||
|
@ -125,9 +125,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (2)
|
||||
|
||||
|
|
|
@ -72,9 +72,9 @@
|
|||
/** \brief Enable/disable the NET transport layer. */
|
||||
#define BOOT_COM_NET_ENABLE (1)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (129)
|
||||
/** \brief Configure the port that the TCP/IP server listens on */
|
||||
#define BOOT_COM_NET_PORT (1000)
|
||||
/** \brief Enable/disable DHCP client for automatically obtaining an IP address. */
|
||||
|
@ -125,9 +125,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (2)
|
||||
|
||||
|
|
|
@ -72,9 +72,9 @@
|
|||
/** \brief Enable/disable the NET transport layer. */
|
||||
#define BOOT_COM_NET_ENABLE (1)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_NET_RX_MAX_DATA (129)
|
||||
/** \brief Configure the port that the TCP/IP server listens on */
|
||||
#define BOOT_COM_NET_PORT (1000)
|
||||
/** \brief Enable/disable DHCP client for automatically obtaining an IP address. */
|
||||
|
@ -125,9 +125,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (2)
|
||||
|
||||
|
|
|
@ -110,9 +110,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (2)
|
||||
|
||||
|
|
|
@ -110,9 +110,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (2)
|
||||
|
||||
|
|
|
@ -110,9 +110,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (2)
|
||||
|
||||
|
|
|
@ -110,9 +110,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (2)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (0)
|
||||
|
||||
|
|
|
@ -97,9 +97,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (0)
|
||||
|
||||
|
|
|
@ -82,9 +82,9 @@
|
|||
/** \brief Configure the desired communication speed. */
|
||||
#define BOOT_COM_RS232_BAUDRATE (57600)
|
||||
/** \brief Configure number of bytes in the target->host data packet. */
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_TX_MAX_DATA (129)
|
||||
/** \brief Configure number of bytes in the host->target data packet. */
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (64)
|
||||
#define BOOT_COM_RS232_RX_MAX_DATA (129)
|
||||
/** \brief Select the desired UART peripheral as a zero based index. */
|
||||
#define BOOT_COM_RS232_CHANNEL_INDEX (1)
|
||||
|
||||
|
|
Loading…
Reference in New Issue