This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
meatmanek@juroujin-ubuntu:~/tnc-esp32$ make monitor | |
Toolchain path: /home/meatmanek/esp/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc | |
Toolchain version: esp32-2019r1 | |
Compiler version: 8.2.0 | |
Python requirements from /home/meatmanek/esp/esp-idf/requirements.txt are satisfied. | |
MONITOR | |
--- idf_monitor on /dev/ttyUSB0 115200 --- | |
--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H --- | |
ets Jun 8 2016 00:22:57 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/cmake/Modules/GrSwig.cmake b/cmake/Modules/GrSwig.cmake | |
index 9849447..10d32ec 100644 | |
--- a/cmake/Modules/GrSwig.cmake | |
+++ b/cmake/Modules/GrSwig.cmake | |
@@ -114,7 +114,7 @@ macro(GR_SWIG_MAKE name) | |
endif() | |
#append additional include directories | |
- find_package(PythonLibs 2) | |
+ find_package(PythonLibs 3) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
from smbus2 import SMBus | |
with SMBus(1) as bus: | |
regs = [bus.read_byte_data(0x6a, addr) for addr in range(0x00, 0x14+1)] | |
def bit(reg_num, bit_num): | |
return (regs[reg_num] >> bit_num) & 0x01 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/dts-v1/; | |
/plugin/; | |
/ { | |
compatible = "brcm,bcm2835"; | |
fragment@0 { | |
target-path = "/"; | |
__overlay__ { | |
vdd_panel: fixedregulator { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/dts-v1/; | |
/plugin/; | |
/ { | |
compatible = "brcm,bcm2835"; | |
fragment@0 { | |
target-path = "/"; | |
__overlay__ { | |
vdd_panel: fixedregulator { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aahed | |
aalii | |
aargh | |
aarti | |
abaca | |
abaci | |
aback | |
abacs | |
abaft | |
abaka |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
from smbus2 import SMBus | |
import textwrap | |
import shutil | |
I2C_ADDRESS = 0x2d | |
with SMBus(10) as bus: |
OlderNewer