This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| tx_boot_at_s: 15.0 | |
| command: picotool reboot --ser E4654C16432C3B22 -f -u | |
| boot_elapsed_s: 15.2 | |
| exit_code: 0 | |
| stdout: The device was asked to reboot into BOOTSEL mode. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| branch: main | |
| commit: 52279f1 | |
| capture_secs: 120 | |
| tx_port: /dev/cu.usbmodem1101 | |
| rx_port: /dev/cu.usbmodem2 | |
| TX: {'samples': 120, 'avg': 100.0, 'max': 100, 'ge70': 120, 'ge90': 120, 'states': {'3': 120}, 'drops_34': 0, 'rec_43': 0} | |
| RX: {'samples': 120, 'avg': 99.5, 'max': 100, 'ge70': 120, 'ge90': 120, 'states': {'3': 120}, 'drops_34': 0, 'rec_43': 0} | |
| pass_90pct: True |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "google.golang.org/protobuf/proto" | |
| "google.golang.org/protobuf/reflect/protodesc" | |
| "google.golang.org/protobuf/reflect/protoreflect" | |
| "google.golang.org/protobuf/types/descriptorpb" | |
| "google.golang.org/protobuf/types/dynamicpb" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import ( | |
| "fmt" | |
| "regexp" | |
| "google.golang.org/protobuf/reflect/protoreflect" | |
| ) | |
| func IsValidTableName(tableName string) bool { | |
| // Table name can only contain alphanumeric characters and underscores | |
| validName := regexp.MustCompile(`^[a-zA-Z0-9_]+$`).MatchString(tableName) |