include interrupt handling time into system time

Change-Id: If2ed2d488b4040d288d712f0a244505adbcec6f5
Refs: #1221
This commit is contained in:
Tomoki Shirasawa
2019-09-20 12:49:23 +09:00
committed by Masamichi Takagi
parent ba80dd8650
commit f115bae8a7
11 changed files with 550 additions and 7 deletions

13
test/issues/1221/Makefile Normal file
View File

@@ -0,0 +1,13 @@
CC = gcc
TARGET = C1221T01
all:: $(TARGET)
C1221T01: C1221T01.c
$(CC) -g -Wall -o $@ $^
test:: all
sh ./C1221.sh
clean::
rm -f $(TARGET) *.o