summaryrefslogtreecommitdiff
path: root/projects/schedule.py
diff options
context:
space:
mode:
Diffstat (limited to 'projects/schedule.py')
-rw-r--r--projects/schedule.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/projects/schedule.py b/projects/schedule.py
new file mode 100644
index 0000000..f13c08f
--- /dev/null
+++ b/projects/schedule.py
@@ -0,0 +1,30 @@
+#! /usr/bin/env python3
+#===============================
+#
+# schedule
+#
+# This schedule is based on
+# https://github.com/sbstjn/timesheet.js.git
+#
+# 2021/02/08 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
+#===============================
+class schedule:
+ list = [
+ # SoC
+ ['07/2020', '04/2023', 'V3U'],
+ ['07/2020', '12/2021', 'V3H 2.0'],
+ ['04/2021', '12/2022', 'Gen3e'],
+ ['06/2021', '07/2023', 'S4'],
+ ['10/2021', '12/2023', 'V4H'],
+ ['01/2022', '12/2023', 'M4'],
+ ['08/2022', '06/2024', 'V4M'],
+
+ # BSP
+ ['07/2020', '06/2021', 'V3H BSP'],
+ ['01/2021', '12/2021', 'Gen3e BSP'],
+ ['01/2021', '12/2022', 'S4 BSP'],
+ ['02/2021', '02/2022', 'V3U BSP'],
+ ['04/2021', '12/2022', 'M4 BSP'],
+ ['07/2021', '12/2023', 'V4H BSP'],
+ ['02/2022', '12/2023', 'V4M BSP'],
+ ]