#396 change pins to default unit test hardware (Pi1 comp.)

This commit is contained in:
mstroh76
2025-09-13 15:48:34 +02:00
parent be0f0ea3c7
commit b54a60a598
10 changed files with 24 additions and 24 deletions

View File

@@ -1,13 +1,13 @@
/*
* Helper program of test_conflict_between_processes.
*
* The program configures ISR on pin 31 (BCM 1) and polls for a termination request.
* The program configures ISR on pin 1 (BCM 18) and polls for a termination request.
*/
#include <stdint.h>
#include <stdio.h>
#include <wiringPi.h>
#define LISTENER_PIN 31 // BCM 1
#define LISTENER_PIN 1 // BCM 18
static uint8_t ok_to_stop = 0;
static void noop() {