OLD | NEW |
1 /** | 1 /** |
2 ****************************************************************************** | 2 ****************************************************************************** |
3 * File Name : main.c | 3 * File Name : main.c |
4 * Description : Main program body | 4 * Description : Main program body |
5 ****************************************************************************** | 5 ****************************************************************************** |
6 * | 6 * |
7 * COPYRIGHT(c) 2016 STMicroelectronics | 7 * COPYRIGHT(c) 2016 STMicroelectronics |
8 * | 8 * |
9 * Redistribution and use in source and binary forms, with or without modificat
ion, | 9 * Redistribution and use in source and binary forms, with or without modificat
ion, |
10 * are permitted provided that the following conditions are met: | 10 * are permitted provided that the following conditions are met: |
(...skipping 17 matching lines...) Expand all Loading... |
28 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE US
E | 28 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE US
E |
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
30 * | 30 * |
31 ****************************************************************************** | 31 ****************************************************************************** |
32 */ | 32 */ |
33 /* Includes ------------------------------------------------------------------*/ | 33 /* Includes ------------------------------------------------------------------*/ |
34 #include "stm32f7xx_hal.h" | 34 #include "stm32f7xx_hal.h" |
35 #include "cmsis_os.h" | 35 #include "cmsis_os.h" |
36 | 36 |
37 /* USER CODE BEGIN Includes */ | 37 /* USER CODE BEGIN Includes */ |
38 #include "fletch_entry.h" | 38 #include "dartino_entry.h" |
39 /* USER CODE END Includes */ | 39 /* USER CODE END Includes */ |
40 | 40 |
41 /* Private variables ---------------------------------------------------------*/ | 41 /* Private variables ---------------------------------------------------------*/ |
42 | 42 |
43 DCMI_HandleTypeDef hdcmi; | 43 DCMI_HandleTypeDef hdcmi; |
44 | 44 |
45 DMA2D_HandleTypeDef hdma2d; | 45 DMA2D_HandleTypeDef hdma2d; |
46 | 46 |
47 ETH_HandleTypeDef heth; | 47 ETH_HandleTypeDef heth; |
48 | 48 |
(...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
764 | 764 |
765 /* USER CODE BEGIN 4 */ | 765 /* USER CODE BEGIN 4 */ |
766 | 766 |
767 /* USER CODE END 4 */ | 767 /* USER CODE END 4 */ |
768 | 768 |
769 /* StartDefaultTask function */ | 769 /* StartDefaultTask function */ |
770 void StartDefaultTask(void const * argument) | 770 void StartDefaultTask(void const * argument) |
771 { | 771 { |
772 | 772 |
773 /* USER CODE BEGIN 5 */ | 773 /* USER CODE BEGIN 5 */ |
774 FletchEntry(argument); | 774 DartinoEntry(argument); |
775 /* Infinite loop */ | 775 /* Infinite loop */ |
776 for(;;) | 776 for(;;) |
777 { | 777 { |
778 osDelay(1); | 778 osDelay(1); |
779 } | 779 } |
780 /* USER CODE END 5 */ | 780 /* USER CODE END 5 */ |
781 } | 781 } |
782 | 782 |
783 #ifdef USE_FULL_ASSERT | 783 #ifdef USE_FULL_ASSERT |
784 | 784 |
(...skipping 17 matching lines...) Expand all Loading... |
802 | 802 |
803 /** | 803 /** |
804 * @} | 804 * @} |
805 */ | 805 */ |
806 | 806 |
807 /** | 807 /** |
808 * @} | 808 * @} |
809 */ | 809 */ |
810 | 810 |
811 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ | 811 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ |
OLD | NEW |