Fabian Peter Hammerle a91b319a4a transmit flowchart: send message to switch lights on (successful on 1cm distance) 3 years ago
..
.gitignore 2e7ca3bd24 added arduino sketch and dummy flowchart to prepare for transmission 3 years ago
Makefile 2e7ca3bd24 added arduino sketch and dummy flowchart to prepare for transmission 3 years ago
README.md 2e7ca3bd24 added arduino sketch and dummy flowchart to prepare for transmission 3 years ago
arduino-sketch.ino 2e7ca3bd24 added arduino sketch and dummy flowchart to prepare for transmission 3 years ago
circuit.sch 2e7ca3bd24 added arduino sketch and dummy flowchart to prepare for transmission 3 years ago
message_generator_block.py a91b319a4a transmit flowchart: send message to switch lights on (successful on 1cm distance) 3 years ago
serial_sink_block.py 2e7ca3bd24 added arduino sketch and dummy flowchart to prepare for transmission 3 years ago
transmit.grc a91b319a4a transmit flowchart: send message to switch lights on (successful on 1cm distance) 3 years ago

README.md

sleep

cpython's time.sleep calls pysleep: https://github.com/python/cpython/blob/v3.8.5/Modules/timemodule.c#L338

pysleep calls Sleep, probably the one defined in Modules/_tkinter.c, with millisecond precision (rounding up): https://github.com/python/cpython/blob/v3.8.5/Modules/timemodule.c#L1873

Modules/_tkinter.c:Sleep (https://github.com/python/cpython/blob/v3.8.5/Modules/_tkinter.c#L361):

static void
Sleep(int milli)
{
    /* XXX Too bad if you don't have select(). */
    struct timeval t;
    t.tv_sec = milli/1000;
    t.tv_usec = (milli%1000) * 1000;
    select(0, (fd_set *)0, (fd_set *)0, (fd_set *)0, &t);
}