From edd2189ab2c0c9131b3ebb27d77e2ad9d6e251d6 Mon Sep 17 00:00:00 2001 From: Kuninori Morimoto Date: Mon, 8 Feb 2021 12:25:57 +0900 Subject: 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 --- projects/schedule.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 projects/schedule.py (limited to 'projects') 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 +#=============================== +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'], + ] -- cgit v1.2.3