Skip to content

Instantly share code, notes, and snippets.

View beroset's full-sized avatar

beroset

  • Chapel Hill, NC
  • 11:38 (UTC -04:00)
View GitHub Profile
@beroset
beroset / my_qpsk_demod_cb_python.cc
Created June 5, 2021 15:16
gnuradio 3.9 tutorial Python binding
/*
* Copyright 2021 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
/***********************************************************************************/
#include <stdio.h>
void loop_up() {
int i;
for (i = 0; i < 42; ++i) {
printf("Hello");
}
}
void loop_down() {