Patricio Whittingslow
Patricio Whittingslow
Sounds great! Keep in mind you should be running `prose.NewDocument` once since it has an extremely high overhead. This just means you'll probably have to accumulate commits on each repo...
This will be addressed when gonum develops the `ode` package. Algorithm logic will be replaced by gonum's logic which would probably be better supported than what is seen here.
Could this be needed to match only `main.go`, `hey.go` files in the following case? ``` - unwanted.go - dir1 | - main.go | - dir2 | - hey.go ``` *...
This actually solves issue #2583. I think it should be properly discussed there as the API result of solving this issue should propagate to other targets. What should the name...
Thinking a bit I can imagine a couple solutions and drawbacks --- ```go func PWMforPin(Pin) (pwmGroup,error) ``` * This function signature cannot be shared between targets- non portability for cases...
Ayke, A quick drive-by response to your worry about obfuscating the underlying hardware with an API: You can't use a pwmGroup right away after calling PWMforPin- you still need the...
Worked on this for a while rolling my own a while back for the ENC28J60 IC. Was working okish, managed to get a basic http webpage to control a LED...
@aykevl @deadprogram Be a good time to define the API for deep sleep. I believe this PR implements the desired functionality https://github.com/tinygo-org/tinygo/pull/2276
@jadefox10200 If you want to use the RTC for deep sleep control you may need to implement it yourself. The function `Sleep` as implemented waits for an interrupt. It is...
Note: The RP2040 is the MCU aboard the Raspberry Pi Pico. So I started my MCU programming career by implementing the pico's I2C, SPI, PWM interfaces last year. The way...