본문 바로가기

분류 전체보기63

[영어공부] 블랙리스트 7-7 (17) 이전 ] https://kangstorys.tistory.com/45 수정날짜 20201221 -> 20201226 -> 20201228 -> 20210101 리즈가 레드의 이야기를 듣고 부서원들에게 이야기를 합니다. 블랙리스트에 있는 사람을 찾기 위해서죠. Liz: A governor is abducted. No demands are made for his return, no blackmail, no ransom. And then 100 days later, he wakes up in a self-storage unit with no one guarding him and walks to freedom. Why? Park : To force a new election. Get someone else in.. 2021. 1. 1.
[영어공부] 블랙리스트 7-7 (16) 이전 ] https://kangstorys.tistory.com/44 공부하면서 수정되고 추가 된 날짜 입니다. 2020/12/11 --> 2020/12/17 --> 2020/12/19 Red : Then why isn't he talking?No politician returns from a harrowing abduction and says nothing, not unless the person who did it still has their hooks into him. Liz : The abduction was categorized as an act of terror. Red : [Chuckling] Well, call it whatever you want.But whatever it is, it .. 2020. 12. 19.
portSWITCH_TO_USER_MODE() portSWITCH_TO_USER_MODE() portSWITCH_TO_USER_MODE() #include “FreeRTOS.h” #include “task.h” void portSWITCH_TO_USER_MODE( void ); Listing 1 portSWITCH_TO_USER_MODE() macro prototype Summary This function is intended for advanced users only and is only relevant to FreeRTOS MPU ports (FreeRTOS ports that make use of a Memory Protection Unit). MPU restricted tasks are created using xTaskCreateRestr.. 2020. 11. 18.
[ARM] ARM Cortex M4 cookbook 단어장 및 소스코드 단어장 및 소스 코드 helloBlinky.c #include "stm32f4xx_hal.h" #include "Board_LED.h" #include "cmsis_os.h" /* Function Prototype */ void SystemClock_Config(void); #ifdef __RTX extern uint32_t os_time; uint32_t HAL_GetTick(void) { return os_time; } #endif /** * System Clock Configuration */ void SystemClock_Config(void) { RCC_OscInitTypeDef RCC_OscInitStruct; RCC_ClkInitTypeDef RCC_ClkInitStruct; /* Enabl.. 2020. 11. 7.
[FreeRTOS] 파일 및 기타 관련 자료 FreeRTOS Source Files Common to All Ports The core FreeRTOS source code is contained in just two C files that are common to all the FreeRTOS ports. These are called tasks.c, and list.c, and they are located directly in the FreeRTOS/Source directory, as shown in Figure 2. In addition to these two files, the following source files are located in the same directory:  queue.c queue.c provides both .. 2020. 10. 24.