• blink.h

  • §

    Jonas Altrock ew20b126@technikum-wien.at

    To overview.

    main.c

    #ifndef BLINK_H
    #define BLINK_H
  • §

    frequency in Hz, shared by threads

    extern volatile double frequency;
  • §

    thread main for blinking

    void *blink_at_frequency(void *);
  • §

    unblock the blinking thread

    void blink_unblock(int signo); 
    
    #endif