This commit has a few different parts. It is still a WIP
This commit adds support for at least some of the Serial boards with the
CH341 chipset, tested using a board from sparkfun as well as one from
Amazon.com
The code was rearranged some of the Claim code and added a VID:DID to Serial Type table that I use to map, such that I know some of these devices have multiple valid setups.
Support Begin/End/Begin - Change baud
Added code to support switching baud rates, or more particular be able to call end() and then call begin(...) with same or different baud rate.
Hopefully some support for also releasing DTR when the end is called.
WIP - Start support for the begin(baud, format)
Adding some support to the code to handle some of the different possible format capabilities.
In particualar trying to handle the parity, number of bits and number of stop bits.
hacked up test app, such that if you type in command line like:
"#9600, 7e1"
It will extract the 9600 as the new baud and try to use format 7e1. I only hard coded a few of these in the test app (8n1, 7e1, 7e2, 8n2)...
Again work in progress. Took me awhile tofigure out how to do this for ch341 boards as I did not see any documents or code that handled this. So had to deduce it from differences in USB packets.
преди 7 години USBSerial_BigBuffer - T4.x (multi devices)
This delta originated to do the work similar to what was done
for the MIDI code base and support two versions of the object.
All of the code was renamed to a new base class USBSerialBase
which has everything, except the main buffer.
Two sub-classes were made that the only difference is the size of the
buffer to hold all of the USB RX and TX information.
This started off to try to support an FT2232H device which transers
512 bytes at a time instead of what most of our devices were transfering
which is 64 bytes.
While doing this, I found that we have a similar issue with the T4.x
boards which now transfer 512 bytes as well and our Serial object would
not handle it.
So there are two sublasses:
```
USBSerial - for those up to 64 byte transfers
USBSerial_BigBuffer - for up to 512 bytes
```
Note: by default the biguffer version will only handle those
devices > 64 bytes, but you can pass in an optional parameter of the
minimum size, so doing something like:
```
USBSerial_BigBuffer userial(myusb, 1);
```
Will handle all up to 512.
Also the FTDI2232H supports two USB to Serial objects, and our code
was setup that in most cases including when we put in VID:PID pair in
our table, the code would claim would claim
the object at device level so only one USB Serial adapter.
So changed table to support saying for this VID:PID claim at
interface level. It now works, but not sure for the device I have as
it is a USB to Serial and JTAG and not sure how to test 2nd one.
But while doing this created a test sketch for Multiple Host USB Serial
objects and the two are claimed by this.
I also created a new version of the Teensy USBToSerial example sketch
that if you configure USB type to Dual Serial or Triple Serial will output
SerialUSB1 to Serial2 and SerialUSB2 to Serial3, which works, and then
tried T4 configured for Dual plugged
into T4.1 with above sketch and could talk to both USB Serial adapters.
The Claim code was rearranged a lot, so hopefully did not break
anything.
But tested with
T4 as mentioned, both Single and Dual Serial
T3.2 with Single Serial, plus: Serial, Joystick, Keyboard...
FTDI - USB to Serial adapter (Sparkfun)
CP2104 - Adafruit
PL2303 - some clones ...
So hopefully most things are still working
преди 4 години This commit has a few different parts. It is still a WIP
This commit adds support for at least some of the Serial boards with the
CH341 chipset, tested using a board from sparkfun as well as one from
Amazon.com
The code was rearranged some of the Claim code and added a VID:DID to Serial Type table that I use to map, such that I know some of these devices have multiple valid setups.
Support Begin/End/Begin - Change baud
Added code to support switching baud rates, or more particular be able to call end() and then call begin(...) with same or different baud rate.
Hopefully some support for also releasing DTR when the end is called.
WIP - Start support for the begin(baud, format)
Adding some support to the code to handle some of the different possible format capabilities.
In particualar trying to handle the parity, number of bits and number of stop bits.
hacked up test app, such that if you type in command line like:
"#9600, 7e1"
It will extract the 9600 as the new baud and try to use format 7e1. I only hard coded a few of these in the test app (8n1, 7e1, 7e2, 8n2)...
Again work in progress. Took me awhile tofigure out how to do this for ch341 boards as I did not see any documents or code that handled this. So had to deduce it from differences in USB packets.
преди 7 години This commit has a few different parts. It is still a WIP
This commit adds support for at least some of the Serial boards with the
CH341 chipset, tested using a board from sparkfun as well as one from
Amazon.com
The code was rearranged some of the Claim code and added a VID:DID to Serial Type table that I use to map, such that I know some of these devices have multiple valid setups.
Support Begin/End/Begin - Change baud
Added code to support switching baud rates, or more particular be able to call end() and then call begin(...) with same or different baud rate.
Hopefully some support for also releasing DTR when the end is called.
WIP - Start support for the begin(baud, format)
Adding some support to the code to handle some of the different possible format capabilities.
In particualar trying to handle the parity, number of bits and number of stop bits.
hacked up test app, such that if you type in command line like:
"#9600, 7e1"
It will extract the 9600 as the new baud and try to use format 7e1. I only hard coded a few of these in the test app (8n1, 7e1, 7e2, 8n2)...
Again work in progress. Took me awhile tofigure out how to do this for ch341 boards as I did not see any documents or code that handled this. So had to deduce it from differences in USB packets.
преди 7 години This commit has a few different parts. It is still a WIP
This commit adds support for at least some of the Serial boards with the
CH341 chipset, tested using a board from sparkfun as well as one from
Amazon.com
The code was rearranged some of the Claim code and added a VID:DID to Serial Type table that I use to map, such that I know some of these devices have multiple valid setups.
Support Begin/End/Begin - Change baud
Added code to support switching baud rates, or more particular be able to call end() and then call begin(...) with same or different baud rate.
Hopefully some support for also releasing DTR when the end is called.
WIP - Start support for the begin(baud, format)
Adding some support to the code to handle some of the different possible format capabilities.
In particualar trying to handle the parity, number of bits and number of stop bits.
hacked up test app, such that if you type in command line like:
"#9600, 7e1"
It will extract the 9600 as the new baud and try to use format 7e1. I only hard coded a few of these in the test app (8n1, 7e1, 7e2, 8n2)...
Again work in progress. Took me awhile tofigure out how to do this for ch341 boards as I did not see any documents or code that handled this. So had to deduce it from differences in USB packets.
преди 7 години This commit has a few different parts. It is still a WIP
This commit adds support for at least some of the Serial boards with the
CH341 chipset, tested using a board from sparkfun as well as one from
Amazon.com
The code was rearranged some of the Claim code and added a VID:DID to Serial Type table that I use to map, such that I know some of these devices have multiple valid setups.
Support Begin/End/Begin - Change baud
Added code to support switching baud rates, or more particular be able to call end() and then call begin(...) with same or different baud rate.
Hopefully some support for also releasing DTR when the end is called.
WIP - Start support for the begin(baud, format)
Adding some support to the code to handle some of the different possible format capabilities.
In particualar trying to handle the parity, number of bits and number of stop bits.
hacked up test app, such that if you type in command line like:
"#9600, 7e1"
It will extract the 9600 as the new baud and try to use format 7e1. I only hard coded a few of these in the test app (8n1, 7e1, 7e2, 8n2)...
Again work in progress. Took me awhile tofigure out how to do this for ch341 boards as I did not see any documents or code that handled this. So had to deduce it from differences in USB packets.
преди 7 години This commit has a few different parts. It is still a WIP
This commit adds support for at least some of the Serial boards with the
CH341 chipset, tested using a board from sparkfun as well as one from
Amazon.com
The code was rearranged some of the Claim code and added a VID:DID to Serial Type table that I use to map, such that I know some of these devices have multiple valid setups.
Support Begin/End/Begin - Change baud
Added code to support switching baud rates, or more particular be able to call end() and then call begin(...) with same or different baud rate.
Hopefully some support for also releasing DTR when the end is called.
WIP - Start support for the begin(baud, format)
Adding some support to the code to handle some of the different possible format capabilities.
In particualar trying to handle the parity, number of bits and number of stop bits.
hacked up test app, such that if you type in command line like:
"#9600, 7e1"
It will extract the 9600 as the new baud and try to use format 7e1. I only hard coded a few of these in the test app (8n1, 7e1, 7e2, 8n2)...
Again work in progress. Took me awhile tofigure out how to do this for ch341 boards as I did not see any documents or code that handled this. So had to deduce it from differences in USB packets.
преди 7 години |
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327 |
- // Simple test of USB Host Mouse/Keyboard
- //
- // This example is in the public domain
-
- #include "USBHost_t36.h"
- #define USBBAUD 115200
- uint32_t baud = USBBAUD;
- uint32_t format = USBHOST_SERIAL_8N1;
- USBHost myusb;
- USBHub hub1(myusb);
- USBHub hub2(myusb);
- USBHIDParser hid1(myusb);
- USBHIDParser hid2(myusb);
- USBHIDParser hid3(myusb);
-
- // There is now two versions of the USBSerial class, that are both derived from a common Base class
- // The difference is on how large of transfers that it can handle. This is controlled by
- // the device descriptor, where up to now we handled those up to 64 byte USB transfers.
- // But there are now new devices that support larger transfer like 512 bytes. This for example
- // includes the Teensy 4.x boards. For these we need the big buffer version.
- // uncomment one of the following defines for userial
- USBSerial userial(myusb); // works only for those Serial devices who transfer <=64 bytes (like T3.x, FTDI...)
- //USBSerial_BigBuffer userial(myusb, 1); // Handles anything up to 512 bytes
- //USBSerial_BigBuffer userial(myusb); // Handles up to 512 but by default only for those > 64 bytes
-
-
- USBDriver *drivers[] = {&hub1, &hub2, &hid1, &hid2, &hid3, &userial};
- #define CNT_DEVICES (sizeof(drivers)/sizeof(drivers[0]))
- const char * driver_names[CNT_DEVICES] = {"Hub1", "Hub2", "HID1", "HID2", "HID3", "USERIAL1" };
- bool driver_active[CNT_DEVICES] = {false, false, false, false};
-
- void setup()
- {
- pinMode(13, OUTPUT);
- pinMode(2, OUTPUT);
- pinMode(3, OUTPUT);
- for (int i = 0; i < 5; i++) {
- digitalWrite(2, HIGH);
- delayMicroseconds(50);
- digitalWrite(2, LOW);
- delayMicroseconds(50);
- }
- while (!Serial && (millis() < 5000)) ; // wait for Arduino Serial Monitor
- Serial.println("\n\nUSB Host Testing - Serial");
- myusb.begin();
- Serial1.begin(115200); // We will echo stuff Through Serial1...
-
- }
-
-
- void loop()
- {
- digitalWrite(13, !digitalRead(13));
- myusb.Task();
- // Print out information about different devices.
- for (uint8_t i = 0; i < CNT_DEVICES; i++) {
- if (*drivers[i] != driver_active[i]) {
- if (driver_active[i]) {
- Serial.printf("*** Device %s - disconnected ***\n", driver_names[i]);
- driver_active[i] = false;
- } else {
- Serial.printf("*** Device %s %x:%x - connected ***\n", driver_names[i], drivers[i]->idVendor(), drivers[i]->idProduct());
- driver_active[i] = true;
-
- const uint8_t *psz = drivers[i]->manufacturer();
- if (psz && *psz) Serial.printf(" manufacturer: %s\n", psz);
- psz = drivers[i]->product();
- if (psz && *psz) Serial.printf(" product: %s\n", psz);
- psz = drivers[i]->serialNumber();
- if (psz && *psz) Serial.printf(" Serial: %s\n", psz);
-
- // If this is a new Serial device.
- if (drivers[i] == &userial) {
- // Lets try first outputting something to our USerial to see if it will go out...
- userial.begin(baud);
-
- }
- }
- }
- }
-
- if (Serial.available()) {
- Serial.println("Serial Available");
- while (Serial.available()) {
- int ch = Serial.read();
- if (ch == '$') {
- BioloidTest();
- while (Serial.read() != -1);
- } else if (ch == '#') {
- // Lets see if we have a baud rate specified here...
- uint32_t new_baud = 0;
- for(;;) {
- ch = Serial.read();
- if ((ch < '0') || (ch > '9'))
- break;
- new_baud = new_baud*10 + ch - '0';
- }
- // See if the user is specifying a format: 8n1, 7e1, 7e2, 8n2
- // Note this is Quick and very dirty code...
- //
- if (ch == ',') {
- char command_line[10];
- ch = Serial.read();
- while (ch == ' ') Serial.read(); // ignore any spaces.
- uint8_t cb = 0;
- while ((ch > ' ') && (cb < sizeof(command_line))) {
- command_line[cb++] = ch;
- ch = Serial.read();
- }
- command_line[cb] = '\0';
- if (CompareStrings(command_line, "8N1")) format = USBHOST_SERIAL_8N1;
- else if (CompareStrings(command_line, "8N2")) format = USBHOST_SERIAL_8N2;
- else if (CompareStrings(command_line, "7E1")) format = USBHOST_SERIAL_7E1;
- else if (CompareStrings(command_line, "7O1")) format = USBHOST_SERIAL_7O1;
- }
- Serial.println("\n*** Set new Baud command ***\n do userial.end()");
- digitalWriteFast(2, HIGH);
- userial.end(); // Do the end statement;
- digitalWriteFast(2, LOW);
- if (new_baud) {
- baud = new_baud;
- Serial.print(" New Baud: ");
- Serial.println(baud);
- Serial.print(" Format: ");
- Serial.println(format, HEX);
- digitalWriteFast(3, HIGH);
- userial.begin(baud, format);
- digitalWriteFast(3, LOW);
- Serial.println(" Completed ");
- } else {
- Serial.println(" New Baud 0 - leave disabled");
- }
-
- while (Serial.read() != -1);
- } else {
- userial.write(ch);
- }
- }
- }
-
- while (Serial1.available()) {
- // Serial.println("Serial1 Available");
- Serial1.write(Serial1.read());
- }
-
- while (userial.available()) {
- // Serial.println("USerial Available");
-
- Serial.write(userial.read());
- }
- }
-
- bool CompareStrings(const char *sz1, const char *sz2) {
- while (*sz2 != 0) {
- if (toupper(*sz1) != toupper(*sz2))
- return false;
- sz1++;
- sz2++;
- }
- return true; // end of string so show as match
-
-
- }
-
- //#define ID_MASTER 200
- #define ID_MASTER 0xfd
- // Extract stuff from Bioloid library..
- #define AX12_BUFFER_SIZE 128
- #define COUNTER_TIMEOUT 12000
-
- /** Instruction Set **/ #define AX_PING 1
- #define AX_READ_DATA 2
- #define AX_WRITE_DATA 3
- #define AX_REG_WRITE 4
- #define AX_ACTION 5
- #define AX_RESET 6
- #define AX_SYNC_WRITE 131
-
- #define AX_TORQUE_ENABLE 24
- #define AX_LED 25
- #define AX_CW_COMPLIANCE_MARGIN 26
- #define AX_CCW_COMPLIANCE_MARGIN 27
- #define AX_CW_COMPLIANCE_SLOPE 28
- #define AX_CCW_COMPLIANCE_SLOPE 29
- #define AX_GOAL_POSITION_L 30
- #define AX_GOAL_POSITION_H 31
- #define AX_GOAL_SPEED_L 32
- #define AX_GOAL_SPEED_H 33
- #define AX_TORQUE_LIMIT_L 34
- #define AX_TORQUE_LIMIT_H 35
- #define AX_PRESENT_POSITION_L 36
- #define AX_PRESENT_POSITION_H 37
-
-
- void BioloidTest() {
- uint8_t master_id = 200;
- Serial.println("\n*** Bioloid Test ***");
- if (ax12GetRegister(master_id, 0, 1) != -1) {
- Serial.println("Controller found at 200");
- } else {
- Serial.println("Controller not at 200 try 0xfd");
- master_id = 0xfd;
- if (ax12GetRegister(master_id, 0, 1) != -1) {
- Serial.println("Controller found at 0xfd");
- } else {
- Serial.println("Controller not found");
- }
- }
- for (uint8_t reg = 0; reg < 10; reg++) {
- myusb.Task();
-
- Serial.print(ax12GetRegister(master_id, reg, 1), HEX);
- Serial.print(" ");
- }
- Serial.println();
- // Now assuming we found controller...
- // May need to turn on power on controller
- ax12SetRegister(master_id, AX_TORQUE_ENABLE, 1);
- delay(2);
-
- // Lets see if we can get the current position for any servo
- for (int i = 0; i < 254; i++) {
- int servo_pos = ax12GetRegister(i, AX_PRESENT_POSITION_L, 2);
- if (servo_pos != -1) {
- Serial.printf("Servo: %d Pos: %d\n", i, servo_pos);
- }
- }
-
- }
-
-
-
- unsigned char ax_rx_buffer[AX12_BUFFER_SIZE];
- int ax12GetRegister(int id, int regstart, int length) {
- // 0xFF 0xFF ID LENGTH INSTRUCTION PARAM... CHECKSUM
- int return_value;
- digitalWriteFast(2, HIGH);
- int checksum = ~((id + 6 + regstart + length) % 256);
- userial.write(0xFF);
- userial.write(0xFF);
- userial.write(id);
- userial.write(4); // length
- userial.write(AX_READ_DATA);
- userial.write(regstart);
- userial.write(length);
- userial.write(checksum);
- userial.flush(); // make sure the data goes out.
-
- if (ax12ReadPacket(length + 6) > 0) {
- // ax12Error = ax_rx_buffer[4];
- if (length == 1)
- return_value = ax_rx_buffer[5];
- else
- return_value = ax_rx_buffer[5] + (ax_rx_buffer[6] << 8);
- } else {
- digitalWriteFast(3, !digitalReadFast(3));
- return_value = -1;
- }
- digitalWriteFast(2, LOW);
- return return_value;
-
- }
-
- void ax12SetRegister(int id, int regstart, int data){
- int checksum = ~((id + 4 + AX_WRITE_DATA + regstart + (data&0xff)) % 256);
- userial.write(0xFF);
- userial.write(0xFF);
- userial.write(id);
- userial.write(4); // length
- userial.write(AX_WRITE_DATA);
- userial.write(regstart);
- userial.write(data&0xff);
- // checksum =
- userial.write(checksum);
- userial.flush();
- //ax12ReadPacket();
- }
-
-
-
- int ax12ReadPacket(int length) {
- unsigned long ulCounter;
- unsigned char offset, checksum;
- unsigned char *psz;
- unsigned char *pszEnd;
- int ch;
-
-
- offset = 0;
-
- psz = ax_rx_buffer;
- pszEnd = &ax_rx_buffer[length];
-
- while (userial.read() != -1) ;
- uint32_t ulStart = millis();
- // Need to wait for a character or a timeout...
- do {
- ulCounter = COUNTER_TIMEOUT;
- while ((ch = userial.read()) == -1) {
- if ((millis() - ulStart) > 10) {
- //if (!--ulCounter) {
- Serial.println("Timeout");
- return 0; // Timeout
- }
- }
- } while (ch != 0xff) ;
- *psz++ = 0xff;
- while (psz != pszEnd) {
- ulCounter = COUNTER_TIMEOUT;
- while ((ch = userial.read()) == -1) {
- //Serial.printf("Read ch: %x\n", ch);
- if (!--ulCounter) {
- return 0; // Timeout
- }
- }
- *psz++ = (unsigned char)ch;
- }
- checksum = 0;
- for (offset = 2; offset < length; offset++)
- checksum += ax_rx_buffer[offset];
- if (checksum != 255) {
- return 0;
- } else {
- return 1;
- }
- }
-
|