core-framework icon indicating copy to clipboard operation
core-framework copied to clipboard

REDHAWK is a software-defined radio (SDR) framework designed to support the development, deployment, and management of real-time software radio applications

Results 16 core-framework issues
Sort by recently updated
recently updated
newest added

Resolves several issues with custom IDL interfaces and C++ ports: * Nested structs are resolved (previously caused `redhawk-codegen` to crash). * Correct determination of fixed-length vs. variable length structs in...

see https://github.com/RedhawkSDR/core-framework/blob/d31acd66f8eb53caa88e1319569a2caf92afd54c/redhawk/src/.builddriver.log ### NOTE: All the deprecated warnings about `throw()` declarations are suppressed! see [clang-tidy check results](https://raw.githubusercontent.com/RedhawkSDR/core-framework/ecd35ff563fa468af4cc7e9110c60d2c9012f2d7/redhawk/src/.run-clang-tidy.log)

```bash Making all in framework CXX nodeBooter-nodebooter.o CXX libossiedomain_la-CorbaGC.lo CXX libossiedomain_la-File_impl.lo CXX libossiedomain_la-FileManager_impl.lo CXX libossiedomain_la-FileSystem_impl.lo CXX libossiedomain_la-helperFunctions.lo CXX libossiedomain_la-POACreator.lo CXX libossiedomain_la-prop_utils.lo In file included from ../include/ossie/Properties.h:34, from nodebooter.cpp:49: nodebooter.cpp: In...

```bash make[2]: Entering directory '/home/klein_cl/Workspace/core-framework/redhawk/src/testing' python setup.py --quiet build File "setup.py", line 41 print "Incosistent tab usage:" ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print("Incosistent tab...

```bash bash-3.2$ ./build_src.sh ~/Workspace/OSSIE/core-framework/redhawk/src ~/Workspace/OSSIE/core-framework/redhawk ./reconf: line 23: libtoolize: command not found configure.ac:271: warning: macro 'AM_PATH_CPPUNIT' not found in library configure.ac:50: warning: The macro `AC_HELP_STRING' is obsolete. configure.ac:50: You should...

The DTD file for a PRF file specifies that the `` tag has an optional `` child: ``` ``` However, the `loadSADFile` function assumes that the `` tag is always...

Writing a Python based component that may import additional Python libraries currently requires creating a SharedLibrary for each required library which is documented [here](https://geontech.com/python-egg-redhawk-shared-library/). Adding these Python SharedLibraries is achieved...

Generated C++ devices have an `updateUsageState()` method that is meant to be called after an allocation or deallocation. The default `Device_impl::updateUsageState()` is not declared as `virtual` ([Device_impl.h#149](https://github.com/RedhawkSDR/core-framework/blob/develop-2.2/redhawk/src/base/include/ossie/Device_impl.h#L149)), so `allocateCapacity()` and...

Upon shutdown of the programmable device with at least one associated persona device, a signal 11 is produced because of a bad clean-up. The class destructor code actually does nothing...