-
'sdld.exe' 不是内部或外部命令,也不是可运行的程序
-
When you press the Write button, the ArduinoIDE will display an error.
------------------------------------------------------------------
CH55x Programmer by VNPro
---------------------------…
-
求帮助
lkb-core目录
```c
fcl@MiBook-Pro MINGW64 /e/nrd/nrf52-keyboard/keyboard/lkb-core (master)
make bootloader
make[1]: Entering directory 'E:/nrd/nrf52-keyboard/application/bootloader/project'
mak…
-
You have the endpoint comments backwards. The first one is OUT, 2nd one is IN.
https://github.com/DeqingSun/ch55xduino/blob/ch55xduino/ch55xduino/ch55x/libraries/Generic_Examples/examples/05.USB/CMS…
-
sdcc -c -V -mmcs51 --model-small --xram-size 0x380 --xram-loc 0x080 --code-size 0x3800 -I/home/bdroy/CH55x-base/ch554_sdcc/examples/../include -DFREQ_SYS=16000000 -DMAX_PACKET_SIZE=64 ../../include/de…
-
I have built a Lot60-BLE Rev.F and also a GT-BLE60 and neither keyboard will be recognised by LKB Configurator. I have also bought a Lot60-BLE Rev.F that was assembled from the Taobao store. This keyb…
-
Hey,
I am facing some trouble with the Timers in the Arduino IDE. When working with the [CH55xTool](https://github.com/MarsTechHAN/ch552tool) my Code works, but with the Arduino IDE, it does not. How…
-
For example:
https://github.com/Blinkinlabs/ch554_sdcc/issues/19
It seems you copied most of the HardwareSerial0 code from debug.c. x1 and x2 should be changed here:
https://github.com/DeqingSun…
-
Hi,
I find my board(CH554, 3.3V power) Uart0 does not work when the baudrate is set as 115200 and clock source as "16Mh (internal), 3.3v or 5V." But it works well with 9600 with "clock source as 16…
-
The string descriptors are a bit verbose as u8. defining them as u16 makes the code a bit cleaner:
```
__code uint16_t SerDes[]={
0x030E,
'C','H','5','5','x'
};
```
Or if you are…