- Create new file or open existing file
/etc/udev/rules.d/99-usb-serial.rules
sudo vi /etc/udev/rules.d/99-usb-serial.rules
- Append followings in it.
Problem: ch34x converter like usb-to-uart or jtag or serial
command sudo dmesg
showed this and tryied to load Screen Driver Keyboard ch34x 1-1.4:1.0: ch34x converter detected;
usb 1-1.4: ch34x converter now attached to ttyUSB0;
input: BRLTTY 6.4 Linux Screen Driver Keyboard as /devices/virtual/input/input71;
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to | |
# newer versions of the distribution. | |
deb http://archive.ubuntu.com/ubuntu jammy main restricted | |
# deb-src http://br.archive.ubuntu.com/ubuntu/ jammy main restricted | |
## Major bug fix updates produced after the final release of the | |
## distribution. | |
deb http://archive.ubuntu.com/ubuntu jammy-updates main restricted | |
# deb-src http://br.archive.ubuntu.com/ubuntu/ jammy-updates main restricted |
name: deepenv | |
channels: | |
- defaults | |
dependencies: | |
- _anaconda_depends=2020.02=py37_0 | |
- _libgcc_mutex=0.1=main | |
- _pytorch_select=0.2=gpu_0 | |
- _tflow_select=2.1.0=gpu | |
- absl-py=0.9.0=py37_0 | |
- alabaster=0.7.12=py37_0 |
sudo apt install \ | |
dos2unix \ | |
iproute2 \ | |
gawk make \ | |
net-tools \ | |
libncurses5-dev \ | |
tftpd zlib1g:i386 \ | |
libssl-dev \ | |
flex bison \ | |
libselinux1 \ |
SYSTEMC_VERSION:=2.3.3 | |
GTKWAVE:= which gtkwave | |
TARGET := reference | |
CXX := g++ | |
LD := $(CXX) | |
C_FLAGS := -I/usr/local/systemc-${SYSTEMC_VERSION}/include -O0 -g3 -Wall -c | |
LD_OPTIONS = -L/usr/local/systemc-2.3.3/lib-linux64 -o $(TARGET) | |
LIBS := -lsystemc | |
C_SOURCES = $(shell ls *.cc) | |
C_OBJS := $(patsubst %.cc, %.o, $(C_SOURCES)) |
{ | |
// Disable automatic loading of last session | |
// https://forum.sublimetext.com/t/disable-automatic-loading-of-last-session/4132 | |
"hot_exit": false, | |
"remember_open_files": false, | |
// Simple and Lovely Theme and Configs | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme", | |
"font_size": 14, |