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
include <BOSL2/std.scad> | |
$fn = $preview ? 32: 128; | |
thickness = 2; | |
width = 65; | |
height = 85; | |
clearance = 1; | |
bottom_height = 40; | |
cube_size = 50; |
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
include <BOSL2/std.scad> | |
include <BOSL2/screws.scad> | |
$fn = $preview ? 32: 128; | |
diff() | |
cyl(l=2, d=37, rounding1=1) { | |
position(TOP) | |
cyl(l=10, d1=37, d2=22, anchor=BOTTOM) { |
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
include <BOSL2/std.scad> | |
$fn = $preview ? 32: 128; | |
diff() | |
zcyl(d = 38.7, h = 3.1) { | |
position(TOP) | |
zcyl(d = 41.8, h = 1.5, anchor = BOTTOM) | |
{ | |
position(TOP) |
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
include <BOSL2/std.scad> | |
include <BOSL2/screws.scad> | |
OVERLAP=0.01; | |
clearance = 0.5; | |
small_clearance = 0.25; | |
wall_thickness = 1.8; | |
line_width = 0.4; | |
first_line_height = 0.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
# Bashrc for stm32mp devices | |
# | |
# In order for this bashrc to be effetive two things need to be checked | |
# 1) Bash is default shell -> chsh -s /bin/bash | |
# 2) .bashrc is sourced on login -> echo ". ~/.bashrc" >> /etc/profile | |
# | |
# See default_shell for automated check of this | |
# /!\ WARNING /!\ NOT TESTED | |
# default_shell() { |
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
set nocompatible " be iMproved, required | |
filetype off " required | |
"-------------------------------------------------------------------------------------------------" | |
" PLUGINS | |
"-------------------------------------------------------------------------------------------------" | |
" Brief help | |
" :PluginList - lists configured plugins | |
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate | |
" :PluginSearch foo - searches for foo; append `!` to refresh local cache |
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
/** Compiled with symbols | |
* gcc -g read_serial.c -o read_serial -DDEBUG | |
*/ | |
#include <errno.h> | |
#include <fcntl.h> | |
#include <stdbool.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <sys/stat.h> |