Altera_Forum
Honored Contributor
14 years agomixed alt_printf vs printf
Dear experts,
I am a beginner using uC/OSII with Nios II EDS 10.1 sp1. Question: 1. Is there any thing I should concern if I use alt_printf and printf in mixed? I found that task using alt_printf required smaller stack. # include <stdio.h># include "sys/alt_stdio.h" void task1(void) { printf("hello world\n"); OSTimeDlyHMSM(0, 0, 1, 0); } void task2(void) { alt_printf("hello world\n"); OSTimeDlyHMSM(0, 0, 1, 0); } Thank you in advance. skw