- STM32F4-Discovery TX: PB10 (-> FTDI RX)
- STM32F4-Discovery RX: PB11 (-> FTDI TX)
- STM32F4-Discovery BOOT1/PB2: 0V
- STM32F4-Discovery BOOT0: 3-5V
Alle beteiligten Pins scheinen 5V-tolerant zu sein, lieber aber vorher nochmal im Datenblatt nachgucken.
### Keybase proof | |
I hereby claim: | |
* I am lukas2511 on github. | |
* I am lukas2511 (https://keybase.io/lukas2511) on keybase. | |
* I have a public key whose fingerprint is 3C2F 2605 E078 A1E1 8F47 9390 9C4D BE6C F438 F333 | |
To claim this, I am signing this object: |
URxvt*keysym.Home: \033[1~ | |
URxvt*keysym.End: \033[4~ |
<?php | |
function generatePassword() | |
{ | |
global $db, $settings; | |
return substr(md5(uniqid(microtime(), 1)), 24, 10); | |
} | |
function makeCryptPassword ($password, $type = 0) |
#!/usr/bin/python3 | |
# -*- coding: utf-8 -*- | |
from __future__ import unicode_literals | |
from mpd import (MPDClient, CommandError) | |
import sys | |
import os | |
import pytz | |
import socket | |
import fcntl | |
import struct |
current=$(pactl list | grep Active\ Port\:\ analog\-output | awk '{print $3}') | |
headphone=$(pactl list | grep analog-output-headphones | grep available | head -n1 | awk '{print $5}' | cut -d')' -f1) | |
if [ "$current" = "analog-output-headphones" ] | |
then | |
pactl set-sink-port 0 analog-output-speaker | |
sudo hda-verb /dev/snd/hwC0D0 0x01b SET_PIN_WIDGET_CONTROL 0x00 | |
if [ "$headphone" = "not" ] | |
then | |
sudo hda-verb /dev/snd/hwC0D0 0x014 SET_PIN_WIDGET_CONTROL 0x40 |