Ethan Reesor

Results 54 issues of Ethan Reesor

Given this program: ``` package main import ( "fmt" "log" "github.com/chzyer/readline" ) func main() { log.SetFlags(log.LstdFlags | log.Lshortfile) rl, err := readline.New("> ") if err != nil { log.Fatal(err) }...

@deivid-rodriguez I put together a way to set hit conditions via the CLI, per our discussion https://github.com/deivid-rodriguez/byebug/pull/747#issuecomment-708662824. Doing it all in one command with a single regex and a single...

## Problem description I want to be able to set a function breakpoint on `Foo.method(:bar)` separately from `Foo.instance_method(:bar)`. I don't have any strong feelings about how/if this is handled by...

I propose adding a generic equality assertion that can use a user-provided comparison function: ```go func Test1(t *testing.T) { a1 := makeA1() a2 := makeA2() EqualFunc(t, TestEqualityOfA, a1, a2) }...

enhancement
pkg-assert
generics

USB CDC support for Teensy 3.6 (NXP MK66F18)

These changes add functions to decode the fault status register(s) and update the hard fault handler with more detailed error messages. They were motivated by a bus error that was...

Support for the Teensy LC, which uses an NXP KL26 (Cortex-M0+)

Adds another convenience method for registers to read multiple bits at an offset. This change will allow cleaner code: ```go // instead of (nxp.MCG.S.Get() & nxp.MCG_S_CLKST_Msk) != (2

This MR updates the HardFault handler, allowing improved debugging for Cortex-M3 and Cortex-M4 based boards, using the fault status registers defined by those cores. ### Changes - Add `cortex-m0.json`, `cortex-m0p.json`,...

**I'm submitting a feature request** **Please tell us about your environment:** * **Browser:** all * **Language:** all * **Loader/bundler:** CLI **Feature:** Allow configuration of prefixed module names, similar to the...

question