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
#!/usr/bin/env python3 | |
import sys | |
import os | |
import pexpect | |
import time | |
import signal | |
serverIP = "<SERVER_IP>" |
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
#!/bin/bash | |
# specify paths to tinydtls and RIOT repo | |
TINYDTLS_REPO=~/git/tinydtls | |
RIOT_REPO=~/git/RIOT-OS/RIOT | |
# get all commits FROM tinydtls repo since last known good commit | |
cd $TINYDTLS_REPO | |
git checkout develop &> /dev/null | |
hashes=$(git rev-list --reverse dcac93f1b38e74f0a57b5df47647943f3df005c2^1..HEAD) |
NewerOlder