This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: Code Composer Studio
Hi all, this is my main code for interfacing internet router through an ethernet cable. I saw a tutorial video of TI and done my coding. There was no errors but still i am not getting any data from router. I am attaching the screenshot of the console to get more detailed information. What can i do?
/* USER CODE BEGIN (0) */
/* USER CODE END */
/* Include Files */
#include "HL_sys_common.h"
#include "HL_system.h"
#include "HL_gio.h"
#include "HL_sci.h"
/* USER CODE BEGIN (1) */
extern void EMAC_LwIP_Main (uint8_t * emacAddress);
/* USER CODE END */
/** @fn void main(void)
* @brief Application main function
* @note This function is empty by default.
*
* This function is called after startup.
* The user can use this function to implement the application.
*/
/* USER CODE BEGIN (2) */
/* USER CODE END */
uint8 emacAddress[6U] = {0x00U, 0x08U, 0xEEU, 0x03U, 0xA6U, 0x6CU};
uint32 emacPhyAddress = 1U;
void main(void)
{
/* USER CODE BEGIN (3) */
gioInit();
EMAC_LwIP_Main(emacAddress);
/* USER CODE END */
}
/* USER CODE BEGIN (4) */
/* USER CODE END */
Hello,
If using the standard port 80, please check your ISP to make sure it allows you to run servers.
LWIP Webserver on LC43x should work if your router and network are set properly.