1234567891011121314151617181920212223242526272829303132333435363738 |
- #include <stdio.h>
- #include <stdlib.h>
- #include <unistd.h>
- #include "rp.h"
- int main (int argc, char **argv) {
- int unsigned period = 1000000; // uS
- int unsigned led;
- // index of blinking LED can be provided as an argument
- if (argc > 1) {
- led = atoi(argv[1]);
- // otherwise LED 0 will blink
- } else {
- led = 0;
- }
- printf("Blinking LED[%u]\n", led);
- led += RP_LED0;
- // Initialization of API
- if (rp_Init() != RP_OK) {
- fprintf(stderr, "Red Pitaya API init failed!\n");
- return EXIT_FAILURE;
- }
- int unsigned retries = 1000;
- while (retries--){
- rp_DpinSetState(led, RP_HIGH);
- usleep(period/2);
- rp_DpinSetState(led, RP_LOW);
- usleep(period/2);
- }
- // Releasing resources
- rp_Release();
- return EXIT_SUCCESS;
- }
|