Forum Discussion
Altera_Forum
Honored Contributor
20 years agoCode for handling a simple ISR
I made my file system, kernel, app and uploaded, this is the source: # include "D:\Proyectos\Marzo\NIOS2ndTry\Krl\build\include\nios2_system.h"# include <stdio.h> typedef unsigned char I...
Altera_Forum
Honored Contributor
20 years agoyou are tryin to implement ISRs in a user-land application, and as far as I know, I don't think you can do this. All interrupts must be built into the kernel as a driver, correct? you need to write an actual driver, not a user application.