Rikke
01/06/2023, 10:34 AM--baud_rate=2_500_000
from the toit-pixel-strip
package. We get the following error when creating the driver:
******************************************************************************
Decoding by `jag`, device has version <2.0.0-alpha.47>
******************************************************************************
EXCEPTION error.
UNKNOWN ERROR 0x105(261)
0: uart_create_ <sdk>/uart.toit:310:3
1: Port <sdk>/uart.toit:99:13
2: UartPixelStrip <pkg:toit-pixel-strip>/uart.toit:124:13
3: setLED_.<block> ../src/pinout.toit:254:18
4: catch.<block> <sdk>/core/exceptions.toit:124:10
5: catch <sdk>/core/exceptions.toit:122:1
6: catch <sdk>/core/exceptions.toit:73:10
7: setLED_ ../src/pinout.toit:253:12
8: update_connection_LED_ ../src/pinout.toit:195:5
9: update_AP_status_LED ../src/pinout.toit:191:3
10: main ../src/gateway.toit:35:3
******************************************************************************
followed by ALREADY_IN_USE everytime it is called.
The UNKNOWN ERROR 0x105
has been traced down to a ESP_ERR_NOT_FOUND
error, and located in the file intr_alloc.c
in function `esp_err_t esp_intr_alloc_intrstatus(`:z3ugma
01/07/2023, 5:42 PMif "foo" in "foobar":
print("String was contained")
Ruby:
if my_string.include? "foo"
Is there a way to check to see if a string contains a substring?z3ugma
01/08/2023, 5:57 AMimport ble
DEV_NAME ::= "O2Ring"
SCAN_DURATION ::= Duration --s=3
find_by_name central/ble.Central name/string:
central.scan --duration=SCAN_DURATION: | device/ble.RemoteScannedDevice |
if device.data.name and device.data.name.contains name:
return device.address
throw "no ring device found"
main:
adapter := ble.Adapter
central := adapter.central
address := find_by_name central DEV_NAME
remote_device := central.connect address
print remote_device.address
services := remote_device.discover_services
//0x0d BLE_HS_ETIMEOUT Operation timed out.
// EXCEPTION error.
// NimBLE error, Type: host, error code: 0x0d. See https://gist.github.com/mikkeldamsgaard/0857ce6a8b073a52...
// 0: ble_get_error_ <sdk>/ble.toit:980:3
// 1: Resource_.throw_error_ <sdk>/ble.toit:811:5
I'm trying to communicate with a ring-based pulse oximeter which does not advertise any services. when calling discover_services
I receive a NimBLE timeout error.
I know the service UUID, and the UUID of the characteristics I'm interested in. Can I skip straight to exchanging write/notify data from the characteristics?
Service data from LightBlue screenshots are attachedmattsoftware
01/09/2023, 11:53 PMjag run hello.toit
the monitor spits out Hello World! as expected. When I run jag watch hello.toit
the monitor spits out Hello World! but then any writes to the file after that does not do anything.
I have tried appending to the file on cli using echo, vim and text editMobivs
01/11/2023, 1:10 AMMobivs
01/11/2023, 3:14 AMclpelema
01/14/2023, 9:51 AMmattsoftware
01/19/2023, 9:07 PMKoirin
02/02/2023, 5:26 PMKoirin
02/07/2023, 2:06 PMojmason
02/13/2023, 9:46 AMwait_for_notification
on it. This blocks, and nothing happens, even if I press the button(s) to create events. (Actually, even reading out the characteristic without bothering with the notification doesn't yield any changed values). Any idea what I'm missing? For the VR-PARK, there is some sample code which I'm trying to replicate: https://github.com/BigJBehr/ESP32-Bluetooth-BLE-Remote-Control/blob/master/BLE-VRBOX.inoNathan
02/18/2023, 2:58 AMimport i2s
import gpio
SCLK ::= gpio.Pin 5
LRCK ::= gpio.Pin 25
DSDIN ::= gpio.Pin 26
ASDOUT ::= gpio.Pin 35
main:
// Initialize I2S bus
bus := i2s.Bus --sck=SCLK --ws=LRCK --tx=DSDIN --rx=ASDOUT --sample_rate=44100 --bits_per_sample=16 --buffer_size=32
i := 255
while i-- > 0:
bytes := bus.read
print "Writing $(bytes.size) bytes"
print "$bytes"
bus.write bytes
Any advice would be much appreciated!davidg238
02/24/2023, 7:15 PMimport esp32
import system.storage as storage
// RAM_STORE_ ::= storage.Bucket.open --flash "/admin"
RAM_STORE_ ::= storage.Bucket.open --ram "/admin"
main:
RAMBuffer.add Time.now.s_since_epoch
print "size after $RAMBuffer.size"
esp32.deep_sleep (Duration --s=5)
class RAMBuffer:
static exists -> bool:
return null != (RAM_STORE_.get "buffer")
static get_buff_ -> List:
buffer := RAM_STORE_.get "buffer"
if not buffer: buffer = []
return buffer
static add entry/any -> none:
buffer := List.from get_buff_
buffer.add entry
RAM_STORE_["buffer"] = buffer
static clear -> none:
RAM_STORE_["buffer"] = []
static size -> int:
return get_buff_.size
static remove_first -> any:
buffer := get_buff_
entry := buffer.first
RAM_STORE_["buffer"] = buffer[1..]
return entry
ojmason
02/26/2023, 7:16 PMMount
, which allows me to mount (and format, if necessary) an SD Card. But how do I read and write with it? Are there any examples that I could use as a starting off point?ojmason
02/26/2023, 7:59 PMTouch
class, but I'm getting an error when trying to run it:
******************************************************************************
Decoding by `jag`, device has version <2.0.0-alpha.53>
******************************************************************************
EXCEPTION error.
UNKNOWN ERROR 0xffffffff(-1)
0: touch_read_ <sdk>/gpio/touch.toit:113:3
1: Touch.read <sdk>/gpio/touch.toit:58:12
2: main touch-test.toit:21:18
******************************************************************************
The code I'm using is
while true:
touch := Touch (gpio.Pin 0) --threshold=500
print (touch.read --raw)
touch.close
sleep --ms=1000
(plus the relevant imports). I'm using a TTGO T-BEAM, and pins 0 or 32 bothe didn't work... Any ideas?Zeroject
02/27/2023, 10:01 AMojmason
03/02/2023, 8:46 PMmonitor
package? Like Gate, Mailbox, etc?diego.ar
03/03/2023, 6:21 PMojmason
03/05/2023, 7:44 PMmax_files
for formatting SD cards is 5; is that not a bit small? What exactly is the meaning of that value?Rikke
03/08/2023, 8:14 AMhost
package is used to create a file stream to the 1 file
- The Ota data is received with http client
- Ota data is written with firmware.FirmwareWriter
writerChinseJackLee
03/10/2023, 3:22 AMRikke
03/10/2023, 9:25 AMFirmwareWriter
. The OTA process is spawned, but everything freezes when writing with FirmwareWriter
. I will provide more details soonMikkelD
03/10/2023, 12:00 PM[wifi] DEBUG: connecting
I (6206) wifi:mode : sta (f4:12:fa:d4:9a:20)
I (6206) wifi:enable tsf
I (7416) wifi:new:<11,2>, old:<1,0>, ap:<255,255>, sta:<11,2>, prof:1
I (8096) wifi:state: init -> auth (b0)
I (8096) wifi:state: auth -> assoc (0)
I (8156) wifi:state: assoc -> run (10)
W (8166) wifi:<ba-add>idx:0 (ifx:0, 70:a7:41:ba:7e:46), tid:5, ssn:1, winSize:64
I (8166) wifi:connected with Spottune, aid = 1, channel 11, 40D, bssid = 70:a7:41:ba:7e:46
I (8166) wifi:security: WPA2-PSK, phy: bgn, rssi: -40
I (8166) wifi:pm start, type: 1
I (8166) wifi:set rx beacon pti, rx_bcn_pti: 0, bcn_timeout: 0, mt_pti: 25000, mt_time: 10000
[wifi] DEBUG: connected
I (8176) wifi:BcnInt:102400, DTIM:1
W (8246) wifi:<ba-add>idx:1 (ifx:0, 70:a7:41:ba:7e:46), tid:6, ssn:1, winSize:64
I (9246) esp_netif_handlers: sta ip: 192.168.1.152, mask: 255.255.255.0, gw: 192.168.1.1
[wifi] INFO: network address dynamically assigned through dhcp {ip: 192.168.1.152}
[wifi] INFO: dns server address dynamically assigned through dhcp {ip: [192.168.1.1]}
[jaguar] INFO: running Jaguar device 'stex_jig' (id: 'dc6b35c1-f193-45bb-a7d7-7926b54d3fbc') on 'http://192.168.1.152:9000'
I (38866) wifi:state: run -> init (6c0)
I (38866) wifi:pm stop, total sleep time: 16065060 us / 30696067 us
W (38866) wifi:<ba-del>idx
W (38866) wifi:<ba-del>idx
I (38866) wifi:new:<11,0>, old:<11,2>, ap:<255,255>, sta:<11,2>, prof:1
[wifi] DEBUG: closing
I (38866) wifi:flush txq
I (38866) wifi:stop sw txq
I (38866) wifi:lmac stop hw txq
I (38866) wifi:Deinit lldesc rx mblock:10
After this, the device needs to be rebooted before it starts jaguar againRikke
03/13/2023, 1:48 PM[wifi] DEBUG: closing
. I've seen this issue when the esp32 goes completely out of memory, and now after not being able to read from sd-card.
******************************************************************************
Decoding by `jag`, device has version <2.0.0-alpha.64>
******************************************************************************
EXCEPTION error.
FILE_NOT_FOUND
0: stat <pkg:pkg-host>/file.toit:197:3
1: is_directory <pkg:pkg-host>/file.toit:178:11
2: get_file_names ../src/sd_card/sd_card_driver.toit:68:6
3: delete_old_files ../src/persistance.toit:182:22
4: handle_data_message.<lambda> ../src/persistance.toit:39:21
******************************************************************************
[wifi] DEBUG: closing
Nothing happens after this, when it is supposed to print out something 1-5 times every second.
I'm unsure how to provide more useful information right now, but I didn't notice this on alpha-47 and I saw this problem when out of memory on alpha-60Daniel Sam
03/14/2023, 3:32 AM#include<Wire.h>
const int MPU = 0x68;
float AccX, AccY, AccZ;
void setup() {
Serial.begin(9600);
Wire.begin();
Wire.beginTransmission(MPU);
Wire.write(0x6B);
Wire.write(0);
Wire.endTransmission(true);
Wire.beginTransmission(MPU);
Wire.write(0x1C);
Wire.write(0b00011000); //scale factor +/-16g
Wire.endTransmission();
}
loop(){
Wire.beginTransmission(MPU);
Wire.write(0x3B);
Wire.endTransmission(false);
Wire.requestFrom(MPU, 14, true); // Solicita os dados ao sensor
AccX = Wire.read() << 8 | Wire.read(); //0x3B (ACCEL_XOUT_H) & 0x3C (ACCEL_XOUT_L)
AccY = Wire.read() << 8 | Wire.read(); //0x3D (ACCEL_YOUT_H) & 0x3E (ACCEL_YOUT_L)
AccZ = Wire.read() << 8 | Wire.read(); //0x3F (ACCEL_ZOUT_H) & 0x40 (ACCEL_ZOUT_L)
Serial.print(AccX / 2048);
Serial.print(" ");
Serial.print(AccY / 2048);
Serial.print(" ");
Serial.println(AccZ / 2048);
}
i have already started making the porting to toit, and i am stuck in this:
import gpio
import i2c
MPU9250_ADDRESS := 0x68
ACCEL_CONFIG_REG := 0x1C
main:
bus := i2c.Bus
--sda=gpio.Pin 21
--scl=gpio.Pin 22
device := bus.device MPU9250_ADDRESS
can any one help me to finish this code in toit?Ben Potter
03/14/2023, 10:16 PMsh
ā jaguar jag flash --chip esp32c3
Flashing device over serial on port '/dev/cu.usbmodem552E0028621' ...
esptool.py v3.3.2-dev
Serial port /dev/cu.usbmodem552E0028621
Connecting....
Chip is ESP32-C3 (revision 3)
Features: Wi-Fi
Crystal is 40MHz
MAC: 10:91:a8:36:3f:08
Uploading stub...
A fatal error occurred: Failed to write to target RAM (result was 01070000: Operation timed out)
Error: exit status 1
Ben Potter
03/15/2023, 1:21 AMsh
[jaguar] INFO: running Jaguar device 'wiro' (id: '402d9458-9cf0-42c7-9cee-09714a97d6bf') on 'http://192.168.86.200:9000'
[jaguar] INFO: program 7e4b355c-9066-ca1b-a357-14f20db16477 started
Hello test!
ESP-ROM:esp32c3-api1-20210207
Build:Feb 7 2021
rst:0x3 (RTC_SW_SYS_RST),boot:0xc (SPI_FAST_FLASH_BOOT)
Saved PC:0x40386f10
SPIWP:0xee
mode:DIO, clock div:1
load:0x3fcd6100,len:0x48
load:0x403ce000,len:0x64c
load:0x403d0000,len:0x2318
entry 0x403ce000
[toit] INFO: starting <v2.0.0-alpha.64>
[wifi] DEBUG: connecting
[wifi] DEBUG: connected
[wifi] INFO: network address dynamically assigned through dhcp {ip: 192.168.86.200}
[wifi] INFO: dns server address dynamically assigned through dhcp {ip: [192.168.86.1]}
[jaguar] INFO: running Jaguar device 'wiro' (id: '402d9458-9cf0-42c7-9cee-09714a97d6bf') on 'http://192.168.86.200:9000'
My code:
import uart
import gpio
import reader show BufferedReader
import writer show Writer
main:
print "Hello test!"
port := uart.Port
--rx=gpio.Pin 20
--tx=gpio.Pin 21
--baud_rate=9600
writer := Writer port
10.repeat:
print "Writing"
writer.write "Test \n\n\n"
sleep --ms=1000
Ben Potter
03/15/2023, 11:08 PM.cache/jaguar
once and re-flashed.
sh
[jaguar] INFO: denied request, header: 'X-Jaguar-Device-ID' was '402d9458-9cf0-42c7-9cee-09714a97d6bf' not '0226b5d0-ab1a-4d7b-9c5f-cddda7dddf12'
After a while, it will end up working for a few runs and then goes back to this toowhatever
03/19/2023, 5:55 AMBen Potter
03/19/2023, 7:53 PMsh
2023-03-19T14:50:17.591-0500 ERROR Compiler.compiler_protocol compiler/compiler_fs_protocol.go:135 read failed {"error": "io: read/write on closed pipe"}
github.com/toitware/toit.git/toitlsp/lsp/compiler.(*CompilerFSProtocol).HandleConn
/Users/runner/work/toit/toit/tools/toitlsp/lsp/compiler/compiler_fs_protocol.go:135
github.com/toitware/toit.git/toitlsp/lsp/compiler.(*PipeFileServer).handleConn
/Users/runner/work/toit/toit/tools/toitlsp/lsp/compiler/file_server_pipe.go:52
Also created an issue: https://github.com/toitware/ide-tools/issues/212Ben Potter
03/19/2023, 7:53 PMsh
2023-03-19T14:50:17.591-0500 ERROR Compiler.compiler_protocol compiler/compiler_fs_protocol.go:135 read failed {"error": "io: read/write on closed pipe"}
github.com/toitware/toit.git/toitlsp/lsp/compiler.(*CompilerFSProtocol).HandleConn
/Users/runner/work/toit/toit/tools/toitlsp/lsp/compiler/compiler_fs_protocol.go:135
github.com/toitware/toit.git/toitlsp/lsp/compiler.(*PipeFileServer).handleConn
/Users/runner/work/toit/toit/tools/toitlsp/lsp/compiler/file_server_pipe.go:52
Also created an issue: https://github.com/toitware/ide-tools/issues/212floitsch
03/19/2023, 7:54 PMBen Potter
03/19/2023, 7:56 PMfloitsch
03/19/2023, 8:00 PMBen Potter
03/19/2023, 8:02 PMjag monitor / jag watch
) it got slowfloitsch
03/19/2023, 8:02 PMif error != null
).delve
installed (Go's debugger).Ben Potter
03/19/2023, 8:04 PMfloitsch
03/19/2023, 8:04 PMdlv attach pid
you might be able to see which function it is continuously calling, and why it doesn't stop.Ben Potter
03/19/2023, 8:05 PMtoit.lsp
?floitsch
03/19/2023, 8:05 PMBen Potter
03/19/2023, 8:05 PMsh
ā bin dlv attach 61015
Type 'help' for list of commands.
(dlv)
floitsch
03/19/2023, 8:11 PMthreads
?Ben Potter
03/19/2023, 8:12 PMThread 3792956 at :0
Thread 3792960 at :0
* Thread 3792961 at 0x108d200 /Users/runner/hostedtoolcache/go/1.17.13/x64/src/sort/search.go:83 sort.SearchInts
Thread 3792962 at :0
Thread 3792963 at :0
Thread 3792994 at 0x1014830 /Users/runner/hostedtoolcache/go/1.17.13/x64/src/runtime/mbitmap.go:947 runtime.heapBitsSetType
Thread 3793039 at 0x1093ed1 /Users/runner/hostedtoolcache/go/1.17.13/x64/src/internal/poll/fd_mutex.go:186 internal/poll.(*fdMutex).rwunlock
Thread 3793044 at :0
Thread 3793045 at :0
Thread 3793046 at :0
Thread 3793047 at :0
Thread 3793048 at 0x105f0e8 /Users/runner/hostedtoolcache/go/1.17.13/x64/src/runtime/netpoll.go:284 internal/poll.runtime_pollReset
Thread 3793087 at :0
Thread 3793088 at 0x1109fed /Users/runner/hostedtoolcache/go/1.17.13/x64/src/bufio/bufio.go:105 bufio.(*Reader).fill
Thread 3793118 at :0
Thread 3793645 at :0
Thread 3793646 at 0x100c86b /Users/runner/hostedtoolcache/go/1.17.13/x64/src/runtime/malloc.go:858 runtime.mallocgc
Thread 3793647 at :0
Thread 3793648 at 0x10644be /Users/runner/hostedtoolcache/go/1.17.13/x64/src/runtime/asm_amd64.s:772 runtime.asmcgocall
Thread 3793649 at :0
Thread 3793651 at :0
Thread 3793652 at :0
Thread 3796699 at :0
Thread 3797876 at 0x1045f2e /Users/runner/hostedtoolcache/go/1.17.13/x64/src/runtime/select.go:310 runtime.selectgo
Thread 3798078 at :0
Thread 3798079 at 0x10368df /Users/runner/hostedtoolcache/go/1.17.13/x64/src/runtime/proc.go:410 runtime.acquireSudog
Thread 3798080 at :0
Thread 3798081 at :0
floitsch
03/19/2023, 8:13 PMgoroutines
list all goroutines.goroutine X
allows to switch to a goroutine.list
shows the source it's currently executing.bt
prints a backtrace of the current goroutine.Ben Potter
03/19/2023, 8:18 PMsh
(dlv) list
> sort.SearchInts() /Users/runner/hostedtoolcache/go/1.17.13/x64/src/sort/search.go:83 (PC: 0x108d200)
Warning: debugging optimized function
Command failed: open /Users/runner/hostedtoolcache/go/1.17.13/x64/src/sort/search.go: no such file or directory
floitsch
03/19/2023, 8:19 PMup
bt
backtrace could already help.Ben Potter
03/19/2023, 8:19 PMsh
(dlv) goroutine 2636
Switched from 2636 to 2636 (thread 3792961)
(dlv) bt
0 0x000000000108d200 in sort.SearchInts
at /Users/runner/hostedtoolcache/go/1.17.13/x64/src/sort/search.go:83
1 0x00000000012a6119 in github.com/toitware/toit.git/toitlsp/lsp/toit.FindLastGreaterThanIdx
at /Users/runner/work/toit/toit/tools/toitlsp/lsp/toit/summary.go:544
2 0x00000000012aaa0d in github.com/toitware/toit.git/toitlsp/lsp/toit/text.(*summaryReader).topLevelReferenceFromGlobalID
at /Users/runner/work/toit/toit/tools/toitlsp/lsp/toit/text/parser.go:776
3 0x00000000012a91b3 in github.com/toitware/toit.git/toitlsp/lsp/toit/text.(*summaryReader).readType
at /Users/runner/work/toit/toit/tools/toitlsp/lsp/toit/text/parser.go:430
4 0x00000000012a8b6a in github.com/toitware/toit.git/toitlsp/lsp/toit/text.(*summaryReader).readMethod
at /Users/runner/work/toit/toit/tools/toitlsp/lsp/toit/text/parser.go:359
5 0x00000000012a8325 in github.com/toitware/toit.git/toitlsp/lsp/toit/text.(*summaryReader).readFunctions
at /Users/runner/work/toit/toit/tools/toitlsp/lsp/toit/text/parser.go:257
6 0x00000000012a785b in github.com/toitware/toit.git/toitlsp/lsp/toit/text.(*summaryReader).readModule
at /Users/runner/work/toit/toit/tools/toitlsp/lsp/toit/text/parser.go:121
7 0x00000000012a7545 in github.com/toitware/toit.git/toitlsp/lsp/toit/text.(*summaryReader).Read
at /Users/runner/work/toit/toit/tools/toitlsp/lsp/toit/text/parser.go:82
8 0x00000000012a728c in github.com/toitware/toit.git/toitlsp/lsp/toit/text.ParseSummary
at /Users/runner/work/toit/toit/tools/toitlsp/lsp/toit/text/parser.go:49
9 0x00000000012b3ca7 in github.com/toitware/toit.git/toitlsp/lsp/compiler.(*parser).AnalyzeOutput
at /Users/runner/work/toit/toit/tools/toitlsp/lsp/compiler/parser.go:69
10 0x00000000012ac1da in github.com/toitware/toit.git/toitlsp/lsp/compiler.(*Compiler).Analyze.func1
at /Users/runner/work/toit/toit/tools/toitlsp/lsp/compiler/compiler.go:136
11 0x00000000012ae903 in github.com/toitware/toit.git/toitlsp/lsp/compiler.(*Compiler).run.func1
at /Users/runner/work/toit/toit/tools/toitlsp/lsp/compiler/compiler.go:336
12 0x0000000001064661 in runtime.goexit
at /Users/runner/hostedtoolcache/go/1.17.13/x64/src/runtime/asm_amd64.s:1581
> sort.SearchInts() /Users/runner/hostedtoolcache/go/1.17.13/x64/src/sort/search.go:83 (PC: 0x108d200)
Warning: debugging optimized function
Frame 1: /Users/runner/work/toit/toit/tools/toitlsp/lsp/toit/summary.go:544 (PC: 12a6119)
(dlv) up
> sort.SearchInts() /Users/runner/hostedtoolcache/go/1.17.13/x64/src/sort/search.go:83 (PC: 0x108d200)
Warning: debugging optimized function
Frame 2: /Users/runner/work/toit/toit/tools/toitlsp/lsp/toit/text/parser.go:776 (PC: 12aaa0d)
(dlv) up
> sort.SearchInts() /Users/runner/hostedtoolcache/go/1.17.13/x64/src/sort/search.go:83 (PC: 0x108d200)
Warning: debugging optimized function
Frame 3: /Users/runner/work/toit/toit/tools/toitlsp/lsp/toit/text/parser.go:430 (PC: 12a91b3)
(dlv) up
> sort.SearchInts() /Users/runner/hostedtoolcache/go/1.17.13/x64/src/sort/search.go:83 (PC: 0x108d200)
Warning: debugging optimized function
Frame 4: /Users/runner/work/toit/toit/tools/toitlsp/lsp/toit/text/parser.go:359 (PC: 12a8b6a)
(dlv) up
> sort.SearchInts() /Users/runner/hostedtoolcache/go/1.17.13/x64/src/sort/search.go:83 (PC: 0x108d200)
Warning: debugging optimized function
Frame 5: /Users/runner/work/toit/toit/tools/toitlsp/lsp/toit/text/parser.go:257 (PC: 12a8325)
(dlv) up
> sort.SearchInts() /Users/runner/hostedtoolcache/go/1.17.13/x64/src/sort/search.go:83 (PC: 0x108d200)
Warning: debugging optimized function
Frame 6: /Users/runner/work/toit/toit/tools/toitlsp/lsp/toit/text/parser.go:121 (PC: 12a785b)
floitsch
03/19/2023, 8:20 PMcontinue
) and wait a bit.ctrl-c
to go back into delve and see if the backtrace changed.Ben Potter
03/19/2023, 8:23 PMsh
received SIGINT, stopping process (will not forward signal)
Stopped at: 0x7ff80872911a
=> 1: no source available
(dlv) bt
0 0x00007ff80872911a in ???
at ?:-1
1 0x0000000001066490 in runtime.pthread_cond_wait_trampoline
at /Users/runner/hostedtoolcache/go/1.17.13/x64/src/runtime/sys_darwin_amd64.s:535
2 0x00000000010644ed in runtime.asmcgocall
at /Users/runner/hostedtoolcache/go/1.17.13/x64/src/runtime/asm_amd64.s:795
3 0x0000000000000000 in ???
at ?:-1
4 0x0000000001052c34 in runtime.pthread_cond_wait
at /Users/runner/hostedtoolcache/go/1.17.13/x64/src/runtime/sys_darwin.go:444
5 0x000000000102fdad in runtime.semasleep
at /Users/runner/hostedtoolcache/go/1.17.13/x64/src/runtime/os_darwin.go:66
6 0x000000000100b2e5 in runtime.notesleep
at /Users/runner/hostedtoolcache/go/1.17.13/x64/src/runtime/lock_sema.go:182
7 0x000000000103904a in runtime.mPark
at /Users/runner/hostedtoolcache/go/1.17.13/x64/src/runtime/proc.go:1441
8 0x000000000103a558 in runtime.stopm
at /Users/runner/hostedtoolcache/go/1.17.13/x64/src/runtime/proc.go:2408
9 0x000000000103e6d6 in runtime.exitsyscall0
at /Users/runner/hostedtoolcache/go/1.17.13/x64/src/runtime/proc.go:4115
10 0x0000000001062543 in runtime.mcall
at /Users/runner/hostedtoolcache/go/1.17.13/x64/src/runtime/asm_amd64.s:307
floitsch
03/19/2023, 8:23 PMBen Potter
03/19/2023, 8:25 PMsh
Sending output to pager...
(dlv) list
Stopped at: 0x7ff80872911a
=> 1: no source available
floitsch
03/19/2023, 8:25 PMgoroutines
you should see a list of all goroutines.kasperl
03/19/2023, 8:26 PMfloitsch
03/19/2023, 8:26 PMkasperl
03/19/2023, 8:27 PMBen Potter
03/19/2023, 8:28 PMtmate
/ssh access to my machine tomorrow if you need to debug furtherfloitsch
03/19/2023, 8:29 PMBen Potter
03/19/2023, 8:35 PMfloitsch
03/19/2023, 8:36 PMkasperl
03/24/2023, 1:32 PM