Hello everyone,
the problem is that I could not set the uart7, not even with the example of Directive 129 uart_echo.
the example is set to UART0, but I need comunicarto by uart7.
I have changed all the settings:
UART0_BASE to UART7_BASE
GPIOPinWrite (GPIO_PORTA_BASE, GPIO_PIN_0, GPIO_PIN_0); to GPIOPinWrite (GPIO_PORTC_BASE, GPIO_PIN_0, GPIO_PIN_0);
ROM_SysCtlPeripheralEnable (SYSCTL_PERIPH_UART0); to ROM_SysCtlPeripheralEnable (SYSCTL_PERIPH_UART7);
ROM_SysCtlPeripheralEnable (SYSCTL_PERIPH_GPIOA);
ROM_SysCtlPeripheralEnable (SYSCTL_PERIPH_GPIOC);
GPIOPinConfigure (GPIO_PA0_U0RX); to GPIOPinConfigure (GPIO_PC4_U7RX);
GPIOPinConfigure (GPIO_PA1_U0TX); to
GPIOPinConfigure (GPIO_PC5_U7TX);
ROM_GPIOPinTypeUART (GPIO_PORTA_BASE, GPIO_PIN_0 | GPIO_PIN_1);
to ROM_GPIOPinTypeUART (GPIO_PORTC_BASE, GPIO_PIN_0 | GPIO_PIN_1);
and it does not work, some other parameter set plays?
THANK YOU FOR YOUR COOPERATION