Test with: clang -target arm-none-eabi -mcpu=cortex-m3 --sysroot=~/.env/gcc-arm-none-eabi -c test.c
  
    
      This file contains hidden or 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
    
  
  
    
  | void print_progress(unsigned int bar_size, float progress) | |
| { | |
| printf("["); | |
| int8_t pos = bar_size * progress; | |
| for (int i = 0; i < bar_size; ++i) { | |
| if (i < pos) { | |
| PRINTF("="); | |
| } else if (i == pos) { | |
| PRINTF(">"); | 
  
    
      This file contains hidden or 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
    
  
  
    
  | yotta init | |
| yotta target efm32gg-stk-gcc | |
| yotta build | 
I hereby claim:
- I am ryankurte on github.
- I am ryankurte (https://keybase.io/ryankurte) on keybase.
- I have a public key whose fingerprint is E3E8 7FF9 8CB0 A229 342C 3169 40A6 AB2B 3548 F685
To claim this, I am signing this object:
  
    
      This file contains hidden or 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
    
  
  
    
  | #!/bin/bash | |
| # | |
| set -e | |
| if [ "$#" -ne 3 ] && [ "$#" -ne 4 ]; then | |
| echo "Usage: $0 CA NAME ORG" | |
| echo "CA - name of fake CA" | |
| echo "NAME - name of fake client" | |
| echo "ORG - organisation for both" | 
  
    
      This file contains hidden or 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
    
  
  
    
  | height = 7; | |
| d_outside = 17.2; | |
| hole_size = 3.4; | |
| hole_taper = 6; | |
| thickness = 3; | |
| inner = 6; | |
| inner_key = 4.4; | 
  
    
      This file contains hidden or 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
    
  
  
    
  | conv = 25.4; | |
| pixy_width = 54; | |
| pixy_height = 51; | |
| wall = 3; | |
| clearance = 1; | |
| thickness = 2; | |
| hole_size = 4; | 
  
    
      This file contains hidden or 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
    
  
  
    
  | barcode_width = 113; | |
| barcode_height = 30; | |
| barcode_depth = 2; | |
| module_width = 1; | |
| buffer = 4; | |
| barcode = [ | |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, //quiet | 
  
    
      This file contains hidden or 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
    
  
  
    
  | # Docker container for python apps | |
| FROM debian:stable | |
| RUN apt-get update && apt-get install -y libc6 libc6-dev \ | |
| python-setuptools\ | |
| python-pip | |
| RUN mkdir -p /usr/src/app | |
| WORKDIR /usr/src/app |