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)
13095정성태7/7/20226296Windows: 208. AD 도메인에 참여하지 않은 컴퓨터에서 Kerberos 인증을 사용하는 방법
13094정성태7/6/20225983오류 유형: 816. Golang - "short write" 오류 원인
13093정성태7/5/20226909.NET Framework: 2029. C# - HttpWebRequest로 localhost 접속 시 2초 이상 지연
13092정성태7/3/20227837.NET Framework: 2028. C# - HttpWebRequest의 POST 동작 방식파일 다운로드1
13091정성태7/3/20226675.NET Framework: 2027. C# - IPv4, IPv6를 모두 지원하는 서버 소켓 생성 방법
13090정성태6/29/20225801오류 유형: 815. PyPI에 업로드한 패키지가 반영이 안 되는 경우
13089정성태6/28/20226291개발 환경 구성: 646. HOSTS 파일 변경 시 Edge 브라우저에 반영하는 방법
13088정성태6/27/20225418개발 환경 구성: 645. "Developer Command Prompt for VS 2022" 명령행 환경의 폰트를 바꾸는 방법
13087정성태6/23/20228354스크립트: 41. 파이썬 - FastAPI / uvicorn 호스팅 환경에서 asyncio 사용하는 방법 [1]
13086정성태6/22/20227787.NET Framework: 2026. C# 11 - 문자열 보간 개선 2가지파일 다운로드1
13085정성태6/22/20227851.NET Framework: 2025. C# 11 - 원시 문자열 리터럴(raw string literals)파일 다운로드1
13084정성태6/21/20226464개발 환경 구성: 644. Windows - 파이썬 2.7을 msi 설치 없이 구성하는 방법
13083정성태6/20/20227027.NET Framework: 2024. .NET 7에 도입된 GC의 메모리 해제에 대한 segment와 region의 차이점 [2]
13082정성태6/19/20226059.NET Framework: 2023. C# - Process의 I/O 사용량을 보여주는 GetProcessIoCounters Win32 API파일 다운로드1
13081정성태6/17/20226128.NET Framework: 2022. C# - .NET 7 Preview 5 신규 기능 - System.IO.Stream ReadExactly / ReadAtLeast파일 다운로드1
13080정성태6/17/20226757개발 환경 구성: 643. Visual Studio 2022 17.2 버전에서 C# 11 또는 .NET 7.0 preview 적용
13079정성태6/17/20224546오류 유형: 814. 파이썬 - Error: The file/path provided (...) does not appear to exist
13078정성태6/16/20226553.NET Framework: 2021. WPF - UI Thread와 Render Thread파일 다운로드1
13077정성태6/15/20226889스크립트: 40. 파이썬 - PostgreSQL 환경 구성
13075정성태6/15/20225844Linux: 50. Linux - apt와 apt-get의 차이 [2]
13074정성태6/13/20226145.NET Framework: 2020. C# - NTFS 파일에 사용자 정의 속성값 추가하는 방법파일 다운로드1
13073정성태6/12/20226345Windows: 207. Windows Server 2022에 도입된 WSL 2
13072정성태6/10/20226634Linux: 49. Linux - ls 명령어로 출력되는 디렉터리 색상 변경 방법
13071정성태6/9/20227217스크립트: 39. Python에서 cx_Oracle 환경 구성
13070정성태6/8/20227035오류 유형: 813. Windows 11에서 입력 포커스가 바뀌는 문제 [1]
13069정성태5/26/20229257.NET Framework: 2019. C# - .NET에서 제공하는 3가지 Timer 비교 [2]
... 16  17  18  19  20  [21]  22  23  24  25  26  27  28  29  30  ...