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/sh | |
# | |
# Set frequency scaling governer to 'performance' on all cores | |
set -e | |
GOVERNOR=performance | |
SYS_PATH=/sys/devices/system/cpu | |
for cpu in `ls $SYS_PATH | grep 'cpu[0-9]\+'`; do | |
CPU_SCALING_GOVERNOR=$SYS_PATH/$cpu/cpufreq/scaling_governor | |
current=`cat $CPU_SCALING_GOVERNOR` | |
echo "$cpu is currently '$current', setting to 'performance'" |
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
#!/usr/bin/python2 | |
#!/usr/bin/env python2 | |
# | |
# This script puts the bladeRF into an RF loopback mode, transmitting | |
# a vector at an offset from the RX frequency. The resulting image may be used | |
# to manually dial in RX-side IQ imbalance correction. Sliders to minimize the RX | |
# DC offset are also included. | |
# | |
# License: GPLv3 | |
# |
NewerOlder