Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
(연관된 글이 4개 있습니다.)

Raspberry PI Zero (W)에 FTDI 장치 연결 후 C/C++로 DTR 제어

지난 글에서 살펴본 FTDI 장치를,

PC에 연결해 동작하는 자신만의 USB 장치 만들어 보기
; https://www.sysnet.pe.kr/2/0/11606

제가 가지고 있는 "라즈베리 파이 Zero W" 모델에 사용해 봤습니다. 그냥 마이크로 USB 단자에 연결 및 해제 시 dmesg 로그를 보면 다음과 같은 메시지를 확인할 수 있습니다.

[처음 연결했을 때]
Indeed it is in host mode hprt0 = 00021501
usb 1-1: new full-speed USB device number 2 using dwc_otg
Indeed it is in host mode hprt0 = 00021501
usb 1-1: New USB device found, idVendor=0403, idProduct=6001
usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
usb 1-1: Product: FT232R USB UART
usb 1-1: Manufacturer: FTDI
usb 1-1: SerialNumber: A901J4AU
NOHZ: local_softirq_pending 40
usbcore: registered new interface driver usbserial
usbcore: registered new interface driver usbserial_generic
usbserial: USB Serial support registered for generic
usbcore: registered new interface driver ftdi_sio
usbserial: USB Serial support registered for FTDI USB Serial Device
ftdi_sio 1-1:1.0: FTDI USB Serial Device converter detected
usb 1-1: Detected FT232RL
usb 1-1: FTDI USB Serial Device converter now attached to ttyUSB0

[연결 해제 시]
usb 1-1: USB disconnect, device number 2
ftdi_sio ttyUSB0: FTDI USB Serial Device converter now disconnected from ttyUSB0
ftdi_sio 1-1:1.0: device disconnected

[두 번째 연결 시]
Indeed it is in host mode hprt0 = 00021501
usb 1-1: new full-speed USB device number 3 using dwc_otg
Indeed it is in host mode hprt0 = 00021501
usb 1-1: New USB device found, idVendor=0403, idProduct=6001
usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
usb 1-1: Product: FT232R USB UART
usb 1-1: Manufacturer: FTDI
usb 1-1: SerialNumber: A901J4AU
ftdi_sio 1-1:1.0: FTDI USB Serial Device converter detected
usb 1-1: Detected FT232RL
usb 1-1: FTDI USB Serial Device converter now attached to ttyUSB0

위의 메시지에 나온 데로 tty 장치에는 다음과 같이 ttyUSB0가 열거됩니다.

$ ls /dev/ttyUSB*
/dev/ttyUSB0




자, 그럼 "PC에 연결해 동작하는 자신만의 USB 장치 만들어 보기" 글에서 했던 대로 DTR 신호를 활성화시키는 C/C++ 프로그램을 만들어 보겠습니다. 아쉽지만 Raspberry PI Zero에서는 .NET Core가 지원이 안되므로 C/C++로 만들어야 합니다.

그렇다고는 해도 Visual Studio의 리눅스 지원이 워낙 훌륭해서,

Visual Studio 2017에서 Raspberry Pi C++ 응용 프로그램 제작
; https://www.sysnet.pe.kr/2/0/11358

윈도우에서도 쉽게 개발할 수 있습니다. 게다가 저 글을 쓸 때와는 또 다르게 자동으로 include 관련 파일들도 싱크를 맞춰주기 때문에,

IntelliSense for Remote Linux Headers
; https://blogs.msdn.microsoft.com/vcblog/2018/04/09/intellisense-for-remote-linux-headers/

인텔리센스 환경까지 제공합니다. 어쨌든 간단하게 다음과 같이 만들고,

#include <stdio.h>
#include <string>
#include <vector>
#include <iostream>
#include <stdlib.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <unistd.h>

using namespace std;

int main(int argc, char *argv[])
{
    // http://xanthium.in/Controlling-RTS-and-DTR-pins-SerialPort-in-Linux

    string portNumber = "0";
    string portName = "/dev/ttyUSB";

    if (argc < 2)
    {
        cout << "FtdiApp [portNumber]" << endl;
        cout << "ex - set DTR on /dev/ttyUSB0" << endl;
        cout << "\t" << "FtdiApp 0" << endl;
        return 1;
    }

    portNumber = argv[1];
    portName.append(portNumber);

    int fd = open(portName.c_str(), O_RDWR | O_NOCTTY);
    if (fd == -1)
    {
        cout << "NO Port: " << portName << endl;
        return 1;
    }

    int dtrFlag = TIOCM_DTR;
    ioctl(fd, TIOCMBIS, &dtrFlag);

    cout << "Press any key to clear DTR again." << endl;
    
    char notUsed[80];
    fgets(notUsed, sizeof(notUsed), stdin);

    ioctl(fd, TIOCMBIC, &dtrFlag);
    close(fd);

    return 0;
}

빌드하면 Raspberry PI Zero에 배포가 됩니다. 실습까지 해봐야겠죠? ^^ 이를 위해 FTDI Basic 모듈을 USB 케이블로 Raspberry pi zero와 연결하고 FTDI Basic 모듈과 LED를 다음과 같이 연결해 줍니다.

ftdi_raspberrypi_1.png

ftdi_raspberrypi_2.png

그런 다음, 라즈베리 파이의 연결 콘솔에서 다음과 같이 명령을 내리면 됩니다.

$ ./FtdiApp 0

실행 후 다음번 엔터 키를 누를 때까지 LED의 불이 들어오고 있는 것을 확인할 수 있습니다.

(첨부 파일은 예제 C++ 프로젝트와 회로도를 포함합니다.)




참고로, 아직 Visual Studio 2017의 인텔리센스를 위한 리눅스 헤더 파일 지원이 불안정한 것 같습니다. 프로젝트를 다시 로드했더니 인텔리센스 기능이 모두 풀렸는데요, 그래서 다시 "Tools" / "Options"의 "Cross Platform" / "Connection Manager" / "Remote Headers IntelliSense Manager"를 통해 업데이트했는데도,

ftdi_raspberrypi_3.png

(위의 화면에서 "Explore" 버튼을 누르면 열리는) 헤더 파일에 대한 로컬 캐시가 그냥 비어 있는 체로 남아 있었습니다. 할 수 없습니다, 이런 경우에는 그냥 수작업으로 헤더 파일을 모두 복사해야 합니다. 방법은 다음의 글에도 나오지만,

Visual C++ for Linux Development
; https://blogs.msdn.microsoft.com/vcblog/2016/03/30/visual-c-for-linux-development/

pscp를 이용해,

Download PuTTY: latest release 
; http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html

다음과 같은 식으로 헤더 파일을 로컬 캐시에 복사하면 됩니다. (또는 네트워크 공유 폴더를 접근해 복사해도 상관없습니다.)

pscp -r [pi_user_name]@[pi_address]:/usr/include .

가령 다음과 같은 환경인 경우,

로컬 캐시 경로: %LOCALAPPDATA%\Microsoft\Linux\HeaderCache\1.0\-1370237495\usr
PI 사용자 계정: mypi
PI 주소: 192.168.100.5

다음과 같이 입력해 주면 됩니다.

C:\temp> cd %LOCALAPPDATA%\Microsoft\Linux\HeaderCache\1.0\-1370237495\usr

C:\Users\...[생략]...\-1370237495\usr> pscp -r mypi@192.168.100.5:/usr/include .
mypi@192.168.100.5's password:

Visual Studio 2017은 로컬 헤더 파일의 변경을 인식하고 곧바로 다시 인텔리센스 기능을 제공합니다.




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]

[연관 글]






[최초 등록일: ]
[최종 수정일: 7/12/2021]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... 16  17  18  19  20  21  [22]  23  24  25  26  27  28  29  30  ...
NoWriterDateCnt.TitleFile(s)
13073정성태6/12/20226391Windows: 207. Windows Server 2022에 도입된 WSL 2
13072정성태6/10/20226680Linux: 49. Linux - ls 명령어로 출력되는 디렉터리 색상 변경 방법
13071정성태6/9/20227256스크립트: 39. Python에서 cx_Oracle 환경 구성
13070정성태6/8/20227078오류 유형: 813. Windows 11에서 입력 포커스가 바뀌는 문제 [1]
13069정성태5/26/20229299.NET Framework: 2019. C# - .NET에서 제공하는 3가지 Timer 비교 [2]
13068정성태5/24/20227757.NET Framework: 2018. C# - 일정 크기를 할당하는 동안 GC를 (가능한) 멈추는 방법 [1]파일 다운로드1
13067정성태5/23/20227123Windows: 206. Outlook - 1년 이상 지난 메일이 기본적으로 안 보이는 문제
13066정성태5/23/20226417Windows: 205. Windows 11 - Windows + S(또는 Q)로 뜨는 작업 표시줄의 검색 바가 동작하지 않는 경우
13065정성태5/20/20227095.NET Framework: 2017. C# - Windows I/O Ring 소개 [2]파일 다운로드1
13064정성태5/18/20226657.NET Framework: 2016. C# - JIT 컴파일러의 인라인 메서드 처리 유무
13063정성태5/18/20227076.NET Framework: 2015. C# - 인라인 메서드(inline methods)
13062정성태5/17/20227882.NET Framework: 2014. C# - async/await 그리고 스레드 (4) 비동기 I/O 재현파일 다운로드1
13061정성태5/16/20226691.NET Framework: 2013. C# - FILE_FLAG_OVERLAPPED가 적용된 파일의 읽기/쓰기 시 Position 관리파일 다운로드1
13060정성태5/15/20229137.NET Framework: 2012. C# - async/await 그리고 스레드 (3) Task.Delay 재현파일 다운로드1
13059정성태5/14/20227637.NET Framework: 2011. C# - CLR ThreadPool의 I/O 스레드에 작업을 맡기는 방법 [1]파일 다운로드1
13058정성태5/13/20227553.NET Framework: 2010. C# - ThreadPool.SetMaxThreads 사용법
13057정성태5/12/20229231오류 유형: 812. 파이썬 - ImportError: cannot import name ...
13056정성태5/12/20226390.NET Framework: 2009. C# - async/await 그리고 스레드 (2) MyTask의 호출 흐름 [2]파일 다운로드1
13055정성태5/11/20229283.NET Framework: 2008. C# - async/await 그리고 스레드 (1) MyTask로 재현 [11]파일 다운로드1
13054정성태5/11/20226810.NET Framework: 2007. C# - 10진수 숫자를 담은 문자열을 숫자로 변환하는 방법 [11]파일 다운로드1
13053정성태5/10/20226439.NET Framework: 2006. C# - GC.KeepAlive 메서드의 역할
13052정성태5/9/20226448.NET Framework: 2005. C# - 생성한 참조 개체가 언제 GC의 정리 대상이 될까요?
13051정성태5/8/20226392.NET Framework: 2004. C# XingAPI - ACF 검색 결과로 구한 CSV 파일을 통해 퀀트 종목 찾기파일 다운로드1
13050정성태5/6/20226410.NET Framework: 2003. C# - COM 개체의 이벤트 핸들러에서 발생하는 예외에 대한 CLR의 특별 대우파일 다운로드1
13049정성태5/6/20225381오류 유형: 811. GoLand - Error: Cannot find package
13048정성태5/6/20226506오류 유형: 810. "ASUS TUF GAMING B550M-PLUS (WI-FI)" 모델에서 블루투스 장치가 인식이 안 되는 문제
... 16  17  18  19  20  21  [22]  23  24  25  26  27  28  29  30  ...