タグ

ブックマーク / embeddedgo.github.io (2)

  • Embedded Go

    You can port the Go runtime to a system that doesn’t implement threads. An example would be the current WebAssembly port. func newosproc(mp *m) { panic("newosproc: not implemented") } But if you want to run a bare metal Go program on multiple cores the thread abstraction is a must, unless you are ready to implement a completely new goroutine scheduler. The goroutine scheduler uses operating system

    Embedded Go
    bootJP
    bootJP 2020/06/24
  • Embedded Go

    There are hundreds of different types of displays targeting the MCU market. From the simplest text only displays based on HD44780 compatible controllers to the Nextion “intelligent” displays that contain their own MCUs and megabytes of RAM. But there is a series of display controllers that shines among many others. They are product of FTDI, a company well known for their USB to UART converters. Cu

    bootJP
    bootJP 2020/03/30
  • 1