From a8e40581ac4d159f04ccf5c2f575c1509ea7bd3a Mon Sep 17 00:00:00 2001 From: IOsetting Date: Fri, 20 Jan 2023 00:03:43 +0800 Subject: [PATCH] refactor: rename example folders --- Examples/{Raw => HAL}/ADC/ContinuousConversion_DMA/main.c | 0 .../ADC/ContinuousConversion_DMA/py32f0xx_hal_conf.h | 0 .../ADC/ContinuousConversion_DMA/py32f0xx_hal_msp.c | 0 .../{Raw => HAL}/ADC/ContinuousConversion_DMA/py32f0xx_it.c | 0 .../{Raw => HAL}/ADC/ContinuousConversion_DMA/py32f0xx_it.h | 0 .../{Raw => HAL}/ADC/SingleConversion_TriggerTimer_IT/main.c | 0 .../ADC/SingleConversion_TriggerTimer_IT/py32f0xx_hal_conf.h | 0 .../ADC/SingleConversion_TriggerTimer_IT/py32f0xx_hal_msp.c | 0 .../ADC/SingleConversion_TriggerTimer_IT/py32f0xx_it.c | 0 .../ADC/SingleConversion_TriggerTimer_IT/py32f0xx_it.h | 0 Examples/{Raw => HAL}/DSP/Matrix_Calc/main.c | 0 Examples/{Raw => HAL}/DSP/Matrix_Calc/py32f0xx_hal_conf.h | 0 Examples/{Raw => HAL}/DSP/Matrix_Calc/py32f0xx_hal_msp.c | 0 Examples/{Raw => HAL}/DSP/Matrix_Calc/py32f0xx_it.c | 0 Examples/{Raw => HAL}/DSP/Matrix_Calc/py32f0xx_it.h | 0 Examples/{Raw => HAL}/GPIO/LED_Toggle/main.c | 0 Examples/{Raw => HAL}/GPIO/LED_Toggle/py32f0xx_hal_conf.h | 0 Examples/{Raw => HAL}/GPIO/LED_Toggle/py32f0xx_hal_msp.c | 0 Examples/{Raw => HAL}/GPIO/LED_Toggle/py32f0xx_it.c | 0 Examples/{Raw => HAL}/GPIO/LED_Toggle/py32f0xx_it.h | 0 Examples/{Raw => HAL}/RCC/HSE_ClockConfigurate/main.c | 0 .../RCC/HSE_ClockConfigurate/py32f0xx_hal_conf.h | 0 .../{Raw => HAL}/RCC/HSE_ClockConfigurate/py32f0xx_hal_msp.c | 0 Examples/{Raw => HAL}/RCC/HSE_ClockConfigurate/py32f0xx_it.c | 0 Examples/{Raw => HAL}/RCC/HSE_ClockConfigurate/py32f0xx_it.h | 0 Examples/{Raw => HAL}/RCC/HSE_PLL_ClockConfigurate/main.c | 0 .../RCC/HSE_PLL_ClockConfigurate/py32f0xx_hal_conf.h | 0 .../RCC/HSE_PLL_ClockConfigurate/py32f0xx_hal_msp.c | 0 .../{Raw => HAL}/RCC/HSE_PLL_ClockConfigurate/py32f0xx_it.c | 0 .../{Raw => HAL}/RCC/HSE_PLL_ClockConfigurate/py32f0xx_it.h | 0 Examples/{Raw => HAL}/RCC/HSI_ClockConfigurate/main.c | 0 .../RCC/HSI_ClockConfigurate/py32f0xx_hal_conf.h | 0 .../{Raw => HAL}/RCC/HSI_ClockConfigurate/py32f0xx_hal_msp.c | 0 Examples/{Raw => HAL}/RCC/HSI_ClockConfigurate/py32f0xx_it.c | 0 Examples/{Raw => HAL}/RCC/HSI_ClockConfigurate/py32f0xx_it.h | 0 Examples/{Raw => HAL}/RCC/HSI_PLL_Output/main.c | 0 Examples/{Raw => HAL}/RCC/HSI_PLL_Output/py32f0xx_hal_conf.h | 0 Examples/{Raw => HAL}/RCC/HSI_PLL_Output/py32f0xx_hal_msp.c | 0 Examples/{Raw => HAL}/RCC/HSI_PLL_Output/py32f0xx_it.c | 0 Examples/{Raw => HAL}/RCC/HSI_PLL_Output/py32f0xx_it.h | 0 Examples/{Raw => HAL}/Test/PY32F002A_32KF_4KR/dummy_data.c | 0 Examples/{Raw => HAL}/Test/PY32F002A_32KF_4KR/dummy_data.h | 0 Examples/{Raw => HAL}/Test/PY32F002A_32KF_4KR/main.c | 0 .../{Raw => HAL}/Test/PY32F002A_32KF_4KR/py32f0xx_hal_conf.h | 0 .../{Raw => HAL}/Test/PY32F002A_32KF_4KR/py32f0xx_hal_msp.c | 0 Examples/{Raw => HAL}/Test/PY32F002A_32KF_4KR/py32f0xx_it.c | 0 Examples/{Raw => HAL}/Test/PY32F002A_32KF_4KR/py32f0xx_it.h | 0 Examples/{Raw_LL => LL}/GPIO/LED_Toggle/main.c | 0 Examples/{Raw_LL => LL}/GPIO/LED_Toggle/main.h | 0 Examples/{Raw_LL => LL}/GPIO/LED_Toggle/py32_assert.h | 0 Examples/{Raw_LL => LL}/GPIO/LED_Toggle/py32f0xx_it.c | 0 Examples/{Raw_LL => LL}/GPIO/LED_Toggle/py32f0xx_it.h | 0 README.md | 5 +++-- 53 files changed, 3 insertions(+), 2 deletions(-) rename Examples/{Raw => HAL}/ADC/ContinuousConversion_DMA/main.c (100%) rename Examples/{Raw => HAL}/ADC/ContinuousConversion_DMA/py32f0xx_hal_conf.h (100%) rename Examples/{Raw => HAL}/ADC/ContinuousConversion_DMA/py32f0xx_hal_msp.c (100%) rename Examples/{Raw => HAL}/ADC/ContinuousConversion_DMA/py32f0xx_it.c (100%) rename Examples/{Raw => HAL}/ADC/ContinuousConversion_DMA/py32f0xx_it.h (100%) rename Examples/{Raw => HAL}/ADC/SingleConversion_TriggerTimer_IT/main.c (100%) rename Examples/{Raw => HAL}/ADC/SingleConversion_TriggerTimer_IT/py32f0xx_hal_conf.h (100%) rename Examples/{Raw => HAL}/ADC/SingleConversion_TriggerTimer_IT/py32f0xx_hal_msp.c (100%) rename Examples/{Raw => HAL}/ADC/SingleConversion_TriggerTimer_IT/py32f0xx_it.c (100%) rename Examples/{Raw => HAL}/ADC/SingleConversion_TriggerTimer_IT/py32f0xx_it.h (100%) rename Examples/{Raw => HAL}/DSP/Matrix_Calc/main.c (100%) rename Examples/{Raw => HAL}/DSP/Matrix_Calc/py32f0xx_hal_conf.h (100%) rename Examples/{Raw => HAL}/DSP/Matrix_Calc/py32f0xx_hal_msp.c (100%) rename Examples/{Raw => HAL}/DSP/Matrix_Calc/py32f0xx_it.c (100%) rename Examples/{Raw => HAL}/DSP/Matrix_Calc/py32f0xx_it.h (100%) rename Examples/{Raw => HAL}/GPIO/LED_Toggle/main.c (100%) rename Examples/{Raw => HAL}/GPIO/LED_Toggle/py32f0xx_hal_conf.h (100%) rename Examples/{Raw => HAL}/GPIO/LED_Toggle/py32f0xx_hal_msp.c (100%) rename Examples/{Raw => HAL}/GPIO/LED_Toggle/py32f0xx_it.c (100%) rename Examples/{Raw => HAL}/GPIO/LED_Toggle/py32f0xx_it.h (100%) rename Examples/{Raw => HAL}/RCC/HSE_ClockConfigurate/main.c (100%) rename Examples/{Raw => HAL}/RCC/HSE_ClockConfigurate/py32f0xx_hal_conf.h (100%) rename Examples/{Raw => HAL}/RCC/HSE_ClockConfigurate/py32f0xx_hal_msp.c (100%) rename Examples/{Raw => HAL}/RCC/HSE_ClockConfigurate/py32f0xx_it.c (100%) rename Examples/{Raw => HAL}/RCC/HSE_ClockConfigurate/py32f0xx_it.h (100%) rename Examples/{Raw => HAL}/RCC/HSE_PLL_ClockConfigurate/main.c (100%) rename Examples/{Raw => HAL}/RCC/HSE_PLL_ClockConfigurate/py32f0xx_hal_conf.h (100%) rename Examples/{Raw => HAL}/RCC/HSE_PLL_ClockConfigurate/py32f0xx_hal_msp.c (100%) rename Examples/{Raw => HAL}/RCC/HSE_PLL_ClockConfigurate/py32f0xx_it.c (100%) rename Examples/{Raw => HAL}/RCC/HSE_PLL_ClockConfigurate/py32f0xx_it.h (100%) rename Examples/{Raw => HAL}/RCC/HSI_ClockConfigurate/main.c (100%) rename Examples/{Raw => HAL}/RCC/HSI_ClockConfigurate/py32f0xx_hal_conf.h (100%) rename Examples/{Raw => HAL}/RCC/HSI_ClockConfigurate/py32f0xx_hal_msp.c (100%) rename Examples/{Raw => HAL}/RCC/HSI_ClockConfigurate/py32f0xx_it.c (100%) rename Examples/{Raw => HAL}/RCC/HSI_ClockConfigurate/py32f0xx_it.h (100%) rename Examples/{Raw => HAL}/RCC/HSI_PLL_Output/main.c (100%) rename Examples/{Raw => HAL}/RCC/HSI_PLL_Output/py32f0xx_hal_conf.h (100%) rename Examples/{Raw => HAL}/RCC/HSI_PLL_Output/py32f0xx_hal_msp.c (100%) rename Examples/{Raw => HAL}/RCC/HSI_PLL_Output/py32f0xx_it.c (100%) rename Examples/{Raw => HAL}/RCC/HSI_PLL_Output/py32f0xx_it.h (100%) rename Examples/{Raw => HAL}/Test/PY32F002A_32KF_4KR/dummy_data.c (100%) rename Examples/{Raw => HAL}/Test/PY32F002A_32KF_4KR/dummy_data.h (100%) rename Examples/{Raw => HAL}/Test/PY32F002A_32KF_4KR/main.c (100%) rename Examples/{Raw => HAL}/Test/PY32F002A_32KF_4KR/py32f0xx_hal_conf.h (100%) rename Examples/{Raw => HAL}/Test/PY32F002A_32KF_4KR/py32f0xx_hal_msp.c (100%) rename Examples/{Raw => HAL}/Test/PY32F002A_32KF_4KR/py32f0xx_it.c (100%) rename Examples/{Raw => HAL}/Test/PY32F002A_32KF_4KR/py32f0xx_it.h (100%) rename Examples/{Raw_LL => LL}/GPIO/LED_Toggle/main.c (100%) rename Examples/{Raw_LL => LL}/GPIO/LED_Toggle/main.h (100%) rename Examples/{Raw_LL => LL}/GPIO/LED_Toggle/py32_assert.h (100%) rename Examples/{Raw_LL => LL}/GPIO/LED_Toggle/py32f0xx_it.c (100%) rename Examples/{Raw_LL => LL}/GPIO/LED_Toggle/py32f0xx_it.h (100%) diff --git a/Examples/Raw/ADC/ContinuousConversion_DMA/main.c b/Examples/HAL/ADC/ContinuousConversion_DMA/main.c similarity index 100% rename from Examples/Raw/ADC/ContinuousConversion_DMA/main.c rename to Examples/HAL/ADC/ContinuousConversion_DMA/main.c diff --git a/Examples/Raw/ADC/ContinuousConversion_DMA/py32f0xx_hal_conf.h b/Examples/HAL/ADC/ContinuousConversion_DMA/py32f0xx_hal_conf.h similarity index 100% rename from Examples/Raw/ADC/ContinuousConversion_DMA/py32f0xx_hal_conf.h rename to Examples/HAL/ADC/ContinuousConversion_DMA/py32f0xx_hal_conf.h diff --git a/Examples/Raw/ADC/ContinuousConversion_DMA/py32f0xx_hal_msp.c b/Examples/HAL/ADC/ContinuousConversion_DMA/py32f0xx_hal_msp.c similarity index 100% rename from Examples/Raw/ADC/ContinuousConversion_DMA/py32f0xx_hal_msp.c rename to Examples/HAL/ADC/ContinuousConversion_DMA/py32f0xx_hal_msp.c diff --git a/Examples/Raw/ADC/ContinuousConversion_DMA/py32f0xx_it.c b/Examples/HAL/ADC/ContinuousConversion_DMA/py32f0xx_it.c similarity index 100% rename from Examples/Raw/ADC/ContinuousConversion_DMA/py32f0xx_it.c rename to Examples/HAL/ADC/ContinuousConversion_DMA/py32f0xx_it.c diff --git a/Examples/Raw/ADC/ContinuousConversion_DMA/py32f0xx_it.h b/Examples/HAL/ADC/ContinuousConversion_DMA/py32f0xx_it.h similarity index 100% rename from Examples/Raw/ADC/ContinuousConversion_DMA/py32f0xx_it.h rename to Examples/HAL/ADC/ContinuousConversion_DMA/py32f0xx_it.h diff --git a/Examples/Raw/ADC/SingleConversion_TriggerTimer_IT/main.c b/Examples/HAL/ADC/SingleConversion_TriggerTimer_IT/main.c similarity index 100% rename from Examples/Raw/ADC/SingleConversion_TriggerTimer_IT/main.c rename to Examples/HAL/ADC/SingleConversion_TriggerTimer_IT/main.c diff --git a/Examples/Raw/ADC/SingleConversion_TriggerTimer_IT/py32f0xx_hal_conf.h b/Examples/HAL/ADC/SingleConversion_TriggerTimer_IT/py32f0xx_hal_conf.h similarity index 100% rename from Examples/Raw/ADC/SingleConversion_TriggerTimer_IT/py32f0xx_hal_conf.h rename to Examples/HAL/ADC/SingleConversion_TriggerTimer_IT/py32f0xx_hal_conf.h diff --git a/Examples/Raw/ADC/SingleConversion_TriggerTimer_IT/py32f0xx_hal_msp.c b/Examples/HAL/ADC/SingleConversion_TriggerTimer_IT/py32f0xx_hal_msp.c similarity index 100% rename from Examples/Raw/ADC/SingleConversion_TriggerTimer_IT/py32f0xx_hal_msp.c rename to Examples/HAL/ADC/SingleConversion_TriggerTimer_IT/py32f0xx_hal_msp.c diff --git a/Examples/Raw/ADC/SingleConversion_TriggerTimer_IT/py32f0xx_it.c b/Examples/HAL/ADC/SingleConversion_TriggerTimer_IT/py32f0xx_it.c similarity index 100% rename from Examples/Raw/ADC/SingleConversion_TriggerTimer_IT/py32f0xx_it.c rename to Examples/HAL/ADC/SingleConversion_TriggerTimer_IT/py32f0xx_it.c diff --git a/Examples/Raw/ADC/SingleConversion_TriggerTimer_IT/py32f0xx_it.h b/Examples/HAL/ADC/SingleConversion_TriggerTimer_IT/py32f0xx_it.h similarity index 100% rename from Examples/Raw/ADC/SingleConversion_TriggerTimer_IT/py32f0xx_it.h rename to Examples/HAL/ADC/SingleConversion_TriggerTimer_IT/py32f0xx_it.h diff --git a/Examples/Raw/DSP/Matrix_Calc/main.c b/Examples/HAL/DSP/Matrix_Calc/main.c similarity index 100% rename from Examples/Raw/DSP/Matrix_Calc/main.c rename to Examples/HAL/DSP/Matrix_Calc/main.c diff --git a/Examples/Raw/DSP/Matrix_Calc/py32f0xx_hal_conf.h b/Examples/HAL/DSP/Matrix_Calc/py32f0xx_hal_conf.h similarity index 100% rename from Examples/Raw/DSP/Matrix_Calc/py32f0xx_hal_conf.h rename to Examples/HAL/DSP/Matrix_Calc/py32f0xx_hal_conf.h diff --git a/Examples/Raw/DSP/Matrix_Calc/py32f0xx_hal_msp.c b/Examples/HAL/DSP/Matrix_Calc/py32f0xx_hal_msp.c similarity index 100% rename from Examples/Raw/DSP/Matrix_Calc/py32f0xx_hal_msp.c rename to Examples/HAL/DSP/Matrix_Calc/py32f0xx_hal_msp.c diff --git a/Examples/Raw/DSP/Matrix_Calc/py32f0xx_it.c b/Examples/HAL/DSP/Matrix_Calc/py32f0xx_it.c similarity index 100% rename from Examples/Raw/DSP/Matrix_Calc/py32f0xx_it.c rename to Examples/HAL/DSP/Matrix_Calc/py32f0xx_it.c diff --git a/Examples/Raw/DSP/Matrix_Calc/py32f0xx_it.h b/Examples/HAL/DSP/Matrix_Calc/py32f0xx_it.h similarity index 100% rename from Examples/Raw/DSP/Matrix_Calc/py32f0xx_it.h rename to Examples/HAL/DSP/Matrix_Calc/py32f0xx_it.h diff --git a/Examples/Raw/GPIO/LED_Toggle/main.c b/Examples/HAL/GPIO/LED_Toggle/main.c similarity index 100% rename from Examples/Raw/GPIO/LED_Toggle/main.c rename to Examples/HAL/GPIO/LED_Toggle/main.c diff --git a/Examples/Raw/GPIO/LED_Toggle/py32f0xx_hal_conf.h b/Examples/HAL/GPIO/LED_Toggle/py32f0xx_hal_conf.h similarity index 100% rename from Examples/Raw/GPIO/LED_Toggle/py32f0xx_hal_conf.h rename to Examples/HAL/GPIO/LED_Toggle/py32f0xx_hal_conf.h diff --git a/Examples/Raw/GPIO/LED_Toggle/py32f0xx_hal_msp.c b/Examples/HAL/GPIO/LED_Toggle/py32f0xx_hal_msp.c similarity index 100% rename from Examples/Raw/GPIO/LED_Toggle/py32f0xx_hal_msp.c rename to Examples/HAL/GPIO/LED_Toggle/py32f0xx_hal_msp.c diff --git a/Examples/Raw/GPIO/LED_Toggle/py32f0xx_it.c b/Examples/HAL/GPIO/LED_Toggle/py32f0xx_it.c similarity index 100% rename from Examples/Raw/GPIO/LED_Toggle/py32f0xx_it.c rename to Examples/HAL/GPIO/LED_Toggle/py32f0xx_it.c diff --git a/Examples/Raw/GPIO/LED_Toggle/py32f0xx_it.h b/Examples/HAL/GPIO/LED_Toggle/py32f0xx_it.h similarity index 100% rename from Examples/Raw/GPIO/LED_Toggle/py32f0xx_it.h rename to Examples/HAL/GPIO/LED_Toggle/py32f0xx_it.h diff --git a/Examples/Raw/RCC/HSE_ClockConfigurate/main.c b/Examples/HAL/RCC/HSE_ClockConfigurate/main.c similarity index 100% rename from Examples/Raw/RCC/HSE_ClockConfigurate/main.c rename to Examples/HAL/RCC/HSE_ClockConfigurate/main.c diff --git a/Examples/Raw/RCC/HSE_ClockConfigurate/py32f0xx_hal_conf.h b/Examples/HAL/RCC/HSE_ClockConfigurate/py32f0xx_hal_conf.h similarity index 100% rename from Examples/Raw/RCC/HSE_ClockConfigurate/py32f0xx_hal_conf.h rename to Examples/HAL/RCC/HSE_ClockConfigurate/py32f0xx_hal_conf.h diff --git a/Examples/Raw/RCC/HSE_ClockConfigurate/py32f0xx_hal_msp.c b/Examples/HAL/RCC/HSE_ClockConfigurate/py32f0xx_hal_msp.c similarity index 100% rename from Examples/Raw/RCC/HSE_ClockConfigurate/py32f0xx_hal_msp.c rename to Examples/HAL/RCC/HSE_ClockConfigurate/py32f0xx_hal_msp.c diff --git a/Examples/Raw/RCC/HSE_ClockConfigurate/py32f0xx_it.c b/Examples/HAL/RCC/HSE_ClockConfigurate/py32f0xx_it.c similarity index 100% rename from Examples/Raw/RCC/HSE_ClockConfigurate/py32f0xx_it.c rename to Examples/HAL/RCC/HSE_ClockConfigurate/py32f0xx_it.c diff --git a/Examples/Raw/RCC/HSE_ClockConfigurate/py32f0xx_it.h b/Examples/HAL/RCC/HSE_ClockConfigurate/py32f0xx_it.h similarity index 100% rename from Examples/Raw/RCC/HSE_ClockConfigurate/py32f0xx_it.h rename to Examples/HAL/RCC/HSE_ClockConfigurate/py32f0xx_it.h diff --git a/Examples/Raw/RCC/HSE_PLL_ClockConfigurate/main.c b/Examples/HAL/RCC/HSE_PLL_ClockConfigurate/main.c similarity index 100% rename from Examples/Raw/RCC/HSE_PLL_ClockConfigurate/main.c rename to Examples/HAL/RCC/HSE_PLL_ClockConfigurate/main.c diff --git a/Examples/Raw/RCC/HSE_PLL_ClockConfigurate/py32f0xx_hal_conf.h b/Examples/HAL/RCC/HSE_PLL_ClockConfigurate/py32f0xx_hal_conf.h similarity index 100% rename from Examples/Raw/RCC/HSE_PLL_ClockConfigurate/py32f0xx_hal_conf.h rename to Examples/HAL/RCC/HSE_PLL_ClockConfigurate/py32f0xx_hal_conf.h diff --git a/Examples/Raw/RCC/HSE_PLL_ClockConfigurate/py32f0xx_hal_msp.c b/Examples/HAL/RCC/HSE_PLL_ClockConfigurate/py32f0xx_hal_msp.c similarity index 100% rename from Examples/Raw/RCC/HSE_PLL_ClockConfigurate/py32f0xx_hal_msp.c rename to Examples/HAL/RCC/HSE_PLL_ClockConfigurate/py32f0xx_hal_msp.c diff --git a/Examples/Raw/RCC/HSE_PLL_ClockConfigurate/py32f0xx_it.c b/Examples/HAL/RCC/HSE_PLL_ClockConfigurate/py32f0xx_it.c similarity index 100% rename from Examples/Raw/RCC/HSE_PLL_ClockConfigurate/py32f0xx_it.c rename to Examples/HAL/RCC/HSE_PLL_ClockConfigurate/py32f0xx_it.c diff --git a/Examples/Raw/RCC/HSE_PLL_ClockConfigurate/py32f0xx_it.h b/Examples/HAL/RCC/HSE_PLL_ClockConfigurate/py32f0xx_it.h similarity index 100% rename from Examples/Raw/RCC/HSE_PLL_ClockConfigurate/py32f0xx_it.h rename to Examples/HAL/RCC/HSE_PLL_ClockConfigurate/py32f0xx_it.h diff --git a/Examples/Raw/RCC/HSI_ClockConfigurate/main.c b/Examples/HAL/RCC/HSI_ClockConfigurate/main.c similarity index 100% rename from Examples/Raw/RCC/HSI_ClockConfigurate/main.c rename to Examples/HAL/RCC/HSI_ClockConfigurate/main.c diff --git a/Examples/Raw/RCC/HSI_ClockConfigurate/py32f0xx_hal_conf.h b/Examples/HAL/RCC/HSI_ClockConfigurate/py32f0xx_hal_conf.h similarity index 100% rename from Examples/Raw/RCC/HSI_ClockConfigurate/py32f0xx_hal_conf.h rename to Examples/HAL/RCC/HSI_ClockConfigurate/py32f0xx_hal_conf.h diff --git a/Examples/Raw/RCC/HSI_ClockConfigurate/py32f0xx_hal_msp.c b/Examples/HAL/RCC/HSI_ClockConfigurate/py32f0xx_hal_msp.c similarity index 100% rename from Examples/Raw/RCC/HSI_ClockConfigurate/py32f0xx_hal_msp.c rename to Examples/HAL/RCC/HSI_ClockConfigurate/py32f0xx_hal_msp.c diff --git a/Examples/Raw/RCC/HSI_ClockConfigurate/py32f0xx_it.c b/Examples/HAL/RCC/HSI_ClockConfigurate/py32f0xx_it.c similarity index 100% rename from Examples/Raw/RCC/HSI_ClockConfigurate/py32f0xx_it.c rename to Examples/HAL/RCC/HSI_ClockConfigurate/py32f0xx_it.c diff --git a/Examples/Raw/RCC/HSI_ClockConfigurate/py32f0xx_it.h b/Examples/HAL/RCC/HSI_ClockConfigurate/py32f0xx_it.h similarity index 100% rename from Examples/Raw/RCC/HSI_ClockConfigurate/py32f0xx_it.h rename to Examples/HAL/RCC/HSI_ClockConfigurate/py32f0xx_it.h diff --git a/Examples/Raw/RCC/HSI_PLL_Output/main.c b/Examples/HAL/RCC/HSI_PLL_Output/main.c similarity index 100% rename from Examples/Raw/RCC/HSI_PLL_Output/main.c rename to Examples/HAL/RCC/HSI_PLL_Output/main.c diff --git a/Examples/Raw/RCC/HSI_PLL_Output/py32f0xx_hal_conf.h b/Examples/HAL/RCC/HSI_PLL_Output/py32f0xx_hal_conf.h similarity index 100% rename from Examples/Raw/RCC/HSI_PLL_Output/py32f0xx_hal_conf.h rename to Examples/HAL/RCC/HSI_PLL_Output/py32f0xx_hal_conf.h diff --git a/Examples/Raw/RCC/HSI_PLL_Output/py32f0xx_hal_msp.c b/Examples/HAL/RCC/HSI_PLL_Output/py32f0xx_hal_msp.c similarity index 100% rename from Examples/Raw/RCC/HSI_PLL_Output/py32f0xx_hal_msp.c rename to Examples/HAL/RCC/HSI_PLL_Output/py32f0xx_hal_msp.c diff --git a/Examples/Raw/RCC/HSI_PLL_Output/py32f0xx_it.c b/Examples/HAL/RCC/HSI_PLL_Output/py32f0xx_it.c similarity index 100% rename from Examples/Raw/RCC/HSI_PLL_Output/py32f0xx_it.c rename to Examples/HAL/RCC/HSI_PLL_Output/py32f0xx_it.c diff --git a/Examples/Raw/RCC/HSI_PLL_Output/py32f0xx_it.h b/Examples/HAL/RCC/HSI_PLL_Output/py32f0xx_it.h similarity index 100% rename from Examples/Raw/RCC/HSI_PLL_Output/py32f0xx_it.h rename to Examples/HAL/RCC/HSI_PLL_Output/py32f0xx_it.h diff --git a/Examples/Raw/Test/PY32F002A_32KF_4KR/dummy_data.c b/Examples/HAL/Test/PY32F002A_32KF_4KR/dummy_data.c similarity index 100% rename from Examples/Raw/Test/PY32F002A_32KF_4KR/dummy_data.c rename to Examples/HAL/Test/PY32F002A_32KF_4KR/dummy_data.c diff --git a/Examples/Raw/Test/PY32F002A_32KF_4KR/dummy_data.h b/Examples/HAL/Test/PY32F002A_32KF_4KR/dummy_data.h similarity index 100% rename from Examples/Raw/Test/PY32F002A_32KF_4KR/dummy_data.h rename to Examples/HAL/Test/PY32F002A_32KF_4KR/dummy_data.h diff --git a/Examples/Raw/Test/PY32F002A_32KF_4KR/main.c b/Examples/HAL/Test/PY32F002A_32KF_4KR/main.c similarity index 100% rename from Examples/Raw/Test/PY32F002A_32KF_4KR/main.c rename to Examples/HAL/Test/PY32F002A_32KF_4KR/main.c diff --git a/Examples/Raw/Test/PY32F002A_32KF_4KR/py32f0xx_hal_conf.h b/Examples/HAL/Test/PY32F002A_32KF_4KR/py32f0xx_hal_conf.h similarity index 100% rename from Examples/Raw/Test/PY32F002A_32KF_4KR/py32f0xx_hal_conf.h rename to Examples/HAL/Test/PY32F002A_32KF_4KR/py32f0xx_hal_conf.h diff --git a/Examples/Raw/Test/PY32F002A_32KF_4KR/py32f0xx_hal_msp.c b/Examples/HAL/Test/PY32F002A_32KF_4KR/py32f0xx_hal_msp.c similarity index 100% rename from Examples/Raw/Test/PY32F002A_32KF_4KR/py32f0xx_hal_msp.c rename to Examples/HAL/Test/PY32F002A_32KF_4KR/py32f0xx_hal_msp.c diff --git a/Examples/Raw/Test/PY32F002A_32KF_4KR/py32f0xx_it.c b/Examples/HAL/Test/PY32F002A_32KF_4KR/py32f0xx_it.c similarity index 100% rename from Examples/Raw/Test/PY32F002A_32KF_4KR/py32f0xx_it.c rename to Examples/HAL/Test/PY32F002A_32KF_4KR/py32f0xx_it.c diff --git a/Examples/Raw/Test/PY32F002A_32KF_4KR/py32f0xx_it.h b/Examples/HAL/Test/PY32F002A_32KF_4KR/py32f0xx_it.h similarity index 100% rename from Examples/Raw/Test/PY32F002A_32KF_4KR/py32f0xx_it.h rename to Examples/HAL/Test/PY32F002A_32KF_4KR/py32f0xx_it.h diff --git a/Examples/Raw_LL/GPIO/LED_Toggle/main.c b/Examples/LL/GPIO/LED_Toggle/main.c similarity index 100% rename from Examples/Raw_LL/GPIO/LED_Toggle/main.c rename to Examples/LL/GPIO/LED_Toggle/main.c diff --git a/Examples/Raw_LL/GPIO/LED_Toggle/main.h b/Examples/LL/GPIO/LED_Toggle/main.h similarity index 100% rename from Examples/Raw_LL/GPIO/LED_Toggle/main.h rename to Examples/LL/GPIO/LED_Toggle/main.h diff --git a/Examples/Raw_LL/GPIO/LED_Toggle/py32_assert.h b/Examples/LL/GPIO/LED_Toggle/py32_assert.h similarity index 100% rename from Examples/Raw_LL/GPIO/LED_Toggle/py32_assert.h rename to Examples/LL/GPIO/LED_Toggle/py32_assert.h diff --git a/Examples/Raw_LL/GPIO/LED_Toggle/py32f0xx_it.c b/Examples/LL/GPIO/LED_Toggle/py32f0xx_it.c similarity index 100% rename from Examples/Raw_LL/GPIO/LED_Toggle/py32f0xx_it.c rename to Examples/LL/GPIO/LED_Toggle/py32f0xx_it.c diff --git a/Examples/Raw_LL/GPIO/LED_Toggle/py32f0xx_it.h b/Examples/LL/GPIO/LED_Toggle/py32f0xx_it.h similarity index 100% rename from Examples/Raw_LL/GPIO/LED_Toggle/py32f0xx_it.h rename to Examples/LL/GPIO/LED_Toggle/py32f0xx_it.h diff --git a/README.md b/README.md index fff9935..6f50f5c 100644 --- a/README.md +++ b/README.md @@ -23,12 +23,13 @@ ├── Docs # Datesheets and User Manuals ├── Examples │   ├── FreeRTOS # FreeRTOS examples -│   ├── Raw # NonFreeRTOS examples -│   └── Raw_LL # NonFreeRTOS examples with low layer lib +│   ├── HAL # HAL library examples +│   └── LL # LL(Low Layer) library examples ├── Libraries │   ├── BSP # SysTick delay and printf for debug │   ├── BSP_LL # SysTick delay and printf for debug │   ├── CMSIS +│   ├── FreeRTOS # FreeRTOS library │   ├── LDScripts # LD files │   ├── PY32F0xx_HAL_Driver # MCU peripheral driver │   └── PY32F0xx_LL_Driver # MCU low layer peripheral driver