Questions tagged [redhawksdr]

A framework and set of tools for software defined radio (SDR) based on the software component architecture (SCA) standard.

a software defined radio (SDR) framework designed to support the development, deployment, and management of real-time software radio applications. To support the design and development of software applications, REDHAWK provides tools that allow development and testing of software modules called "Components" and composition of Components into "Waveform Applications" that can be seamlessly deployed on a single computer or multiple network-enabled computers.

The REDHAWK IDE provides tools to support development of REDHAWK software. The development and deployment of REDHAWK Applications are aided by graphical editors and drag-and-drop Waveform construction. The IDE allows users to interact and control multiple running REDHAWK instances and applications.

link

256 questions
0
votes
1 answer

AudioSink unknown error

I would like to build an FM/AM trasmitter/receiver to test my USRP on Redhawk and I downloaded audio-components from GitHub Axios-Engineering repository. I tried to built these waveform in which I run: -SigGen,DataConverter and…
Biga
  • 37
  • 6
0
votes
1 answer

What target OSs does RedHawk Support

I have not used RedHawk but am considering using it. Reading the documentation it appears that RedHawk only supports development on varieties of Linux, but it is not clear whether this limitation also applies to target execution environment. Can…
Terry L Anderson
  • 263
  • 1
  • 11
0
votes
2 answers

Where are the components?

I am using version 1.9.0 of the RED HAWK IDE on RedHat 6.3. After install RedHawk I looked at the video http://www.youtube.com/watch?v=wN9p8EjiQs4. I tried to run through the example but I notice I am missing a large amount of the components she has…
histrung
  • 3
  • 3
0
votes
2 answers

REDHAWK IDE sandbox not appearing in SCA Explorer

I am using version 1.9.0 of the REDHAWK IDE on CentOS 6.5 and ran software updates today, made up of OpenJDK updates. Before the updates, I was able to see the sandbox and chalkboard in the IDE. When I opened the IDE a little while after the…
0
votes
1 answer

Is there a way to change the number of output ports in a component at run-time?

In my application I will not know the number of output ports for the component until a user specifies a configuration file. I attempted to do this by leaving the number of output ports in the .scd.xml file at zero. When I select the configuration…
0
votes
1 answer

How can I use a get method in a REDHAWK unit test to query a USB dongle directly?

I'm trying to query my USB dongle (NooElec R820T SDR) to determine what frequency it's tuned to. I want to make the unit test configure call to see if the device is properly adjusted and working. I could simply use: self.comp.frequency = 1000000…
0
votes
1 answer

Failed To Generate DataConverter C++ Component

I am trying to modify the DataConverter component from the REDHAWK repo on GitHub (https://github.com/RedhawkSDR/basic-components/tree/master/DataConverter) to convert data from float to the complex float data type, so I send data can send data to…
coder
  • 37
  • 11
0
votes
1 answer

How to start a waveform from a python script, if a component is run on two different architectures?

I had asked an earlier question on how to create and run the same component on different architecture, Same component run on 2 different GPPs. The IDE can create a component that can run on two different architectures via the implementation tab.…
0
votes
1 answer

Same component on 2 different GPPs

I am working with a REDHAWK 1.9, Linux GPP, and a ARM GPP. I have a waveform that includes components across multiple GPPs. In this waveform, I have the same component (with same name) running on the Linux GPP and the ARM GPP. I have 2 different…
0
votes
2 answers

USRP_UHD source and sink for redhawk

I install last version of Redhawk (v1.9.0) and USRP_UHD from github repository (https://github.com/RedhawkSDR/USRP_UHD) but I have no idea how to build a USRP source/sink. Are already available these component in some repository? If not,someone can…
Biga
  • 37
  • 6
0
votes
2 answers

Plot stops working for packet sizes greater than 128 KB (R 1.9)

To reproduce the issue, launch a SigGen component. Plot the output port using the IDE or explorer. Change xfer_len property of the SigGen component to a value > 16000. The plot stops working. I am still able to snapshot data. I am using R…
erf0099
  • 3
  • 4
0
votes
2 answers

redhawk ide chalkboard palette is empty

I made an installation of the RedHawk framework and IDE on a Linux Ubuntu 13.04 (64bit system). It seems to run correctly but I don't see any Component (like sigGen or hardLimit) in the Chalkboard palette. My $SDRROOT/dom/components dir is empty.…
0
votes
1 answer

Allocation of Front End II interface compliant device

I am working REDHAWK 1.9 on Centos 6.4 (32 bit) OS. I have a device that conforms to the FrontEnd( FE) II interface for a Tuner. The allocation of an FEII compliant device is via a structure (frontend_tuner_allocation). The IDE does not appear to…
0
votes
1 answer

omniNames service won't start, but directly calling executable works

For some reason the omniNames service won't start (again), but if call the omniNames executable it starts without a problem. This problem seems to reoccur every once in a while. Calling omniNames appears to start fine... >> sudo /sbin/service…
coder
  • 37
  • 11
0
votes
1 answer

Cannot receive packet data over BullkIO port sent from Executable Device

I want to create data on a Device and send it over a BulkIO port to a Component running inside of a Waveform on the Device. I believe this is the correct way to create data flow from hardware into a Component. I have a usesport on the…