-
Updated
Sep 14, 2020 - C
microcontroller
Here are 1,324 public repositories matching this topic...
-
Updated
Sep 13, 2020 - C++
-
Updated
Sep 12, 2020 - Python
-
Updated
Sep 13, 2020 - C
Is your enhancement proposal related to a problem? Please describe.
Refer to zephyrproject-rtos/zephyr#27357 (comment)
and
zephyrproject-rtos/zephyr#27357 (comment)
Describe the solution you'd like
- Use sys_get_le24() to pass crc_init value
- Define CRC polynomial and use the define instead of magic numbers.
Resurrecting the second bullet from #1334
- Figure out how to fix favicon / logo more generally (here's a start https://github.com/tock/tock/tree/doc-updates)
-
Updated
Aug 30, 2020 - C
-
Updated
Aug 18, 2020 - C
I wont to convert a unixtimestamp to localtime in circuit python.
This is the simple code:
unix_correction = 946684800 # correct to 01-01-2000
timezone = 7200
t=1598887049
def convertUnixTime(t,timezone):
dummy=time.localtime(t-unix_correction+timezone)
return "%4d-%02d-%02d %02d:%02d" % (dummy[0],dummy[1],dummy[2],dummy[3],dummy[4])
Running it I get the error message:
"time
-
Updated
Sep 11, 2020 - C++
-
Updated
Sep 11, 2020 - C++
-
Updated
Sep 12, 2020 - C++
-
Updated
May 4, 2020 - Makefile
-
Updated
Aug 8, 2020 - C
-
Updated
Sep 10, 2020
-
Updated
Sep 12, 2020 - JavaScript
-
Updated
Sep 14, 2020 - Rust
Implement some test cases for standard memset()
-
Updated
Sep 11, 2020 - C++
-
Updated
Jul 22, 2020 - C
-
Updated
Jul 18, 2020 - C++
-
Updated
Jun 2, 2020 - Forth
-
Updated
Jul 21, 2020 - C++
-
Updated
Sep 13, 2020 - C++
Improve this page
Add a description, image, and links to the microcontroller topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the microcontroller topic, visit your repo's landing page and select "manage topics."
In order for interrupt-based wake-ups (as introduced by #1142) to work concurrently with
time.Sleep, we need to make some per-board changes.Previously,
sleepTicks(the function used as an interface between the scheduler and the hardware timer) was defined to block until the timer completed, since there was nothing else to do. Now we need to change this so that it bails out when an interrup