This is the end part of "User_Initialization" in user_routines.c
Code:
relay7_fwd = 1;
relay7_rev = 0;
Initialize_Falcon();
Putdata(&txdata); /* DO NOT CHANGE! */
Serial_Driver_Initialize();
printf("IFI 2006 User Processor Initialized ...\r"); /* Optional - Print initialization message. */
User_Proc_Is_Ready(); /* DO NOT CHANGE! - last line of User_Initialization */
}
The "Initialize_Falcon()" is where I try to write to the TTL port. As you can see it IS above "Serial_Driver_Initialize()," but I can't move it down because the it would be below Putdata?
Thanks,
Nathan