#include "DIO.h" #include "MyRio.h" #include #include #include #include #include #include #include #include #define MY_PRIORITY \ (49) /* we use 49 as the PRREMPT_RT use 50 \ as the priority of kernel tasklets \ and interrupt handler by default */ #define MAX_SAFE_STACK \ (8 * 1024) /* The maximum stack size which is \ guaranteed safe to access without \ faulting */ #define NSEC_PER_SEC (1000000000) /* The number of nsecs per sec. */ // Required for making loop finite #if !defined(LoopDuration) #define LoopDuration 2 /* How long to output the signal, in seconds */ #endif extern NiFpga_Session myrio_session; extern MyRio_Dio B7; void stack_prefault(void) { unsigned char dummy[MAX_SAFE_STACK]; memset(dummy, 0, MAX_SAFE_STACK); return; } int main(int argc, char *argv[]) { NiFpga_Status status; /* * Open the myRIO NiFpga Session. * This function MUST be called before all other functions. After this call * is complete the myRIO target will be ready to be used. */ status = MyRio_Open(); if (MyRio_IsNotSuccess(status)) { return status; } struct timespec t; struct sched_param param; int interval = 50000000; // Determines the time period of the task // required for looping for a set time time_t currentTime; time_t finalTime; /* Declare ourself as a real time task */ param.sched_priority = MY_PRIORITY; if (sched_setscheduler(0, SCHED_FIFO, ¶m) == -1) { perror("sched_setscheduler failed"); exit(-1); } /* Lock memory */ if (mlockall(MCL_CURRENT | MCL_FUTURE) == -1) { perror("mlockall failed"); exit(-2); } /* Pre-fault our stack */ stack_prefault(); clock_gettime(CLOCK_MONOTONIC, &t); /* start after one second */ t.tv_sec++; // Normally, the main function runs a long running or infinite loop. // A finite loop is used for convenience in the labs. time(¤tTime); finalTime = currentTime + LoopDuration; uint8_t ledValue = 0; B7.bit = 0x07; B7.dir = DIOB_70DIR; B7.in = DIOB_70IN; B7.out = DIOB_70OUT; while (currentTime < finalTime) { /* wait until next shot */ clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &t, NULL); // Toggle LED value ledValue = ledValue ? 0 : 1; // Toggle between 0 and 0x0F (all LEDs on) // Write to LED register status = NiFpga_WriteU8(myrio_session, DOLED30, ledValue); if (MyRio_IsNotSuccess(status)) { printf("Error writing to LED register\n"); break; } /* calculate next shot */ t.tv_nsec += interval; while (t.tv_nsec >= NSEC_PER_SEC) { t.tv_nsec -= NSEC_PER_SEC; t.tv_sec++; } time(¤tTime); } // end of while (currentTime) /* * Close the myRIO NiFpga Session. * This function MUST be called after all other functions. */ status = MyRio_Close(); return status; }