Forum Discussion
Altera_Forum
Honored Contributor
15 years agosame printf routine for two different cores
Hey, I'm a student from University of Waterloo working on thread migration and stuff. I was just wondering if there's a way to have the same printf routine in assembly for two different cores. In a m...
Altera_Forum
Honored Contributor
15 years agoAs long as the two cores aren't trying to access the uart simultaneously and you don't use interrupts it should work. You should use a mutex between the two cores and use a driver that does polling instead of waiting for an interrupt.