소스 검색

Use the proper button alias BUTTON_PIN to the system instruction

pull/6/head
Nelson Neves 12 년 전
부모
커밋
e7c5bac641
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      examples/wfi.c

+ 3
- 1
examples/wfi.c 파일 보기

@@ -112,7 +112,9 @@ void setup (void)
// Use the gpio program to initialise the hardware
// (This is the crude, but effective bit)

system ("gpio edge 0 falling") ;
char cmd[80] ;
sprintf (cmd, "gpio edge %d falling", BUTTON_PIN) ;
system (cmd) ;
system ("gpio export 17 out") ;
system ("gpio export 18 out") ;



불러오는 중...
취소
저장