The dongle itself is sending out data using 802.11a (5 GHz WiFi) with OFDM and 6 Mbit/s data rate:
Radiotap Header v0, Length 38
Header revision: 0
Header pad: 0
Header length: 38
Present flags
from amaranth import * | |
from amaranth.lib import enum, data, wiring, stream, io | |
from amaranth.lib.wiring import In, Out, connect, flipped | |
from amaranth.sim import Simulator | |
class IOStream(wiring.Component): | |
def __init__(self, width, *, meta_layout=0, latency=0): | |
self._latency = latency |
/* | |
* script to export data of the named sheet as an individual csv files | |
* sheet downloaded to Google Drive and then downloaded as a CSV file | |
* file named according to the name of the sheet | |
* original author: Michael Derazon (https://gist.github.com/mderazon/9655893) | |
*/ | |
function onOpen() { | |
var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
var csvMenuEntries = [{name: "Download Primary Time File", functionName: "saveAsCSV"}]; |