This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; /etc/ptpd.conf | |
; ============================================================================== | |
; This is a recommended configuration for a PTPv2 slave | |
; For a full list of options run ptpd2 -H or see the documentation and man pages | |
; ============================================================================== | |
; interface has to be specified (see with ifconfig) | |
ptpengine:interface=enp6s0 | |
; PTP domain |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const uint8_t pin = A0; | |
void setup() { | |
// put your setup code here, to run once: | |
Serial.begin(9600); | |
pinMode(pin, INPUT); | |
} | |
void loop() { | |
// put your main code here, to run repeatedly: |