summaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2021-02-08 12:25:57 +0900
committerKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2021-02-08 12:27:41 +0900
commitedd2189ab2c0c9131b3ebb27d77e2ad9d6e251d6 (patch)
tree87bf68994d90cd0ce6110765dc0a216a2490c0a0 /projects
parentdbdd23b384c08435ce1f35b0d8da9c21bd1448ef (diff)
Add Schedule support
This patch adds SoC/BSP schedule support. PeriPeri member can know the Renesas plan from it. It is based on timesheet JavaScript which from below with small customize. https://github.com/sbstjn/timesheet.js.git Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Diffstat (limited to 'projects')
-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'],
+ ]