Raspberry Pi4 Static WiFi IP less than 1 minute read Raspi4 version : 20.04.3 LTS focal fossa Ubuntu Server sudo apt-get update sudo apt-get upgrade sudo apt-get install dhcpcd5 sudo nano /etc/dhcpcd.conf edit dhcpcd.conf File interface wlan0 static ip_address=192.168.0.9 static routers=192.168.0.1 static domain_name_servers=192.168.0.1 8.8.8.8 fd51:42f8:caae:d92e::1 static netmask=255.255.255.0 sudo netplan apply or sudo /etc/init.d/networking restart sudo reboot wifi change sudo nano /etc/netplan/50-cloud-init.yaml network: ethernets: eth0: dhcp4: true optional: true version: 2 wifis: wlan0: optional: true access-points: "SSID-NAME-HERE": password: "PASSWORD-HERE" dhcp4: true Go to top Share on Twitter Facebook LinkedIn Previous Next Leave a comment
STM32 UART Interrupt less than 1 minute read 원하는 바이트 크기보다 더 큰 것을 받았을 경우 내가 처음에 보낸 것은 가 붙어있어서 일정 크기만큼 잘린 후 버퍼에 남은 것 때문에 먹통이 되어버린 것이다.
Leave a comment