KakaoTech
  • 블로그
  • 맥오토메이터
  • 비글본블랙
  • 아두이노
  • chatGPT
  • FreeRTOS
  • 매뉴얼
  • 알림

guileschool 블로그

To Make Your Life Easier
가일스쿨은 당신의 삶을 쉽게 만들어 줍니다

Featured Posts
  • freertos 하드웨어 인터럽트 우선순위 정리

    우선순위 인터럽트 유형 설명 비고 Higher System Excepton Interrupts hardfault(-1), NMI(-2), Reset(-3)   0         NON-RTOS HW Interrupts     5 ──────────────── configMAX_SYSCALL_INTERRUPT_PRIORITY(5)configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY 와 동일     RTOS awareness HW Interrupts 이 구간(PRIO 6~15)에서 발생하는 이 인터럽트들은 권리와 의무를 함께 가짐권리:1. taskENTER_CRITICAL(), taskEXIT_CRITICAL() 에 대해 인터럽트 활성화 비활성화 가능2. 각 하드웨어 인터럽트 핸들러 함수의 마지막에서 portYIELD_FROM_ISR()을 호출함으로해서 하드리얼타임의 중요한 요건인 HW_ISR 내에서 선점이 일어날 수 있게 해줌의무:인터럽트 핸들러에서 커널 함수를 호출하고 싶을...

    임베디드 RTOS FREERTOS

    freertos's profile image

    freertos

    2024-01-10 10:32

    • 0 Comments
  • 쉘스크립트에서 IFS=$'\n' 의 의미

    원문 http://guileschool.com/2022/09/01/2022-09-01-Reasons-for-using-IFS-$quotes-in-shell-scripts/ 질문사항 쉘스크립트에서 IFS=$’\n’ 는 어떤 목적을 가지고 있나요? # 실제 변수에 저장되는 문자열이 다르다 bash-5.1$ F="\n" bash-5.1$ echo -n "$F" | hexdump -C 00000000 5c 6e |\n| 00000002 bash-5.1$ F='\n' bash-5.1$ echo -n "$F" | hexdump -C 00000000 5c 6e |\n| 00000002 bash-5.1$ F=$'\n' bash-5.1$ echo -n "$F" | hexdump -C 00000000 0a |.| 00000001 bash-5.1$

    자동제어 자동화 time-saver 리눅스 맥북 스마트홈

    mac.automator's profile image

    mac.automator

    2022-09-01 12:43

    • 0 Comments
  • xargs 을 이용하여 두가지 이상의 작업을 동시에 처리하기

    원문 http://guileschool.com/2019/12/17/Using-xargs-to-process-two-or-more-jobs-at-the-same-time/ 질문사항 ls * | wc 명령을 실행할 경우 도 화면에 보여주고, 처리결과도 화면에 보여주고싶어요 # <SOL> 로그 화면 캡쳐 user@linux:~/Desktop/text$ find . -iname '*.txt' -print0 | xargs -0 -n1 -I @ bash -c 'NAME="@"; ls $NAME; wc $NAME' ./thegeekstuff.txt 8 45 297 ./thegeekstuff.txt ./path.txt 2 3 162 ./path.txt ./number.txt 3 3 28 ./number.txt user@linux:~/Desktop/text$ user@linux:~/Desktop/text$ ls * | xargs -0 -n1 -I @ bash -c 'NAME="@"; ls $NAME; wc $NAME' demo_file fruits number.txt...

    자동제어 자동화 time-saver 리눅스 맥북 스마트홈

    mac.automator's profile image

    mac.automator

    2019-12-17 20:42

    • 0 Comments
  • MacOS TCC 권한 재설정에 관한 이야기

    아래는 원글의 일부만 발췌 자세한 내용은 MarsEdit 4 라는 앱을 개발하기도 한 전직 애플개발자 Daniel Jalkut의 글을 참조 https://bitsplitting.org/2018/07/11/reauthorizing-automation-in-mojave/ 제목: 모하비의 자동화 재 인증 2018 년 7 월 11 일 macOS Mojave 베타에는 자동화 된 작업을 수행 할 수있는 응용 프로그램에 대한 사용자 제어가 크게 향상되었습니다. Mac에서 자동화에 관해 이야기 할 때 AppleScript 또는 Automator에 대해 일반적으로 생각하지만 더 넓은 관점의 자동화는 한 응용 프로그램에서 다른 응용 프로그램으로의 모든 통신으로 볼 수 있습니다. 이러한 자동화의...

    자동제어 자동화 time-saver 리눅스 맥북 스마트홈

    mac.automator's profile image

    mac.automator

    2019-02-13 18:38

    • 0 Comments
  • 맥에 위험한 앱(APP)을 강제로 설치하기 위한 조치

    맥에 설치하려는 앱의 제목이 “LockedApp” 라고 가정 1순위(권장) #For a certain application run in Terminal: admin☠ sudo xattr -rd com.apple.quarantine /Applications/LockedApp.app 2순위(위의 방법이 안될때) #To disable checks globally run in Terminal: admin☠ sudo spctl --master-disable

    자동제어 자동화 time-saver 리눅스 맥북 스마트홈

    mac.automator's profile image

    mac.automator

    2019-02-13 18:29

    • 0 Comments
  • No Previous Page
  • 1
  • 2
  • 3
  • 4
  • 5
  • Next Page
  • github
  • facebook
  • twitter
  • rss
  • GuileSchool
  • YouTube

Copyright © GuileSchool All rights reserved.