Mignon Pelletier
Mignon Pelletier
I just added a few more commits to this branch, reflecting further work I've done: - I got the interpreter working - I've added support for the latest versions of...
The right pair of holes appear to be incorrectly positioned. They should be [0.7 inches apart](https://learn.adafruit.com/assets/57241), the same as the left pair of holes.
@cmsimike as mentioned above, Adafruit actually uses two different standards for the hole spacing. So the template is not "wrong" as it is now. If you're designing a Feather (so...
I built a GHC 8.0.1 cross compiler with the above patch, and now I can do `arm-unknown-linux-androideabi-ghc -fPIC Test.hs` without getting the error about `-fPIC`. However, when I build this...
FWIW, I ran into this same issue on both OS X and Ubuntu. On both operating systems, the "ghc-pkg recache" workaround did not help, but mgsloan's workaround with rm and...
OK, I've modified the existing `SD_Card` symbol. I like the use of non-numeric pin numbers. (The KLC used to forbid this, and I hadn't realized it had changed.) > First,...
> (Obviously the footprints may need changes and I volunteer to do it if someone else will volunteer to review.) I've [submitted a PR](https://github.com/KiCad/kicad-footprints/pull/598) for the `SD_TE_2041021` footprint. I think...
@myfreescalewebpage I'm just waiting for some clear instructions on what to do. There have been a lot of comments from a lot of people, and discussion about SD card symbols...
> Maybe the order has changed with V5. I don't know. I don't know about v5, but my experience with 4.0.7 is that everything just appears in the file in...
Here is a simpler test case: ```scheme (define v (make-vector 1 (make-vector 1 "Goodbye, World!"))) (vector-set! (vector-ref v 0) 0 "Hello, World!") (display (vector-ref (vector-ref v 0) 0)) (newline) ```