Ignatius Bramananditya Rivaldi
Ignatius Bramananditya Rivaldi
There's two signal metadata formats that I know of; - Gnuradio SigMF: https://github.com/gnuradio/SigMF/blob/sigmf-v1.x/sigmf-spec.md - ION GNSS SDR: https://github.com/IonMetadataWorkingGroup/GNSS-Metadata-Standard It will be nice if GNSS-SDR can interpret these metadata standards and...
In https://v2.baklava.tech/visual-editor/customization.html they have this example code: ``` import { Editor, Components } from "@baklavajs/renderer-vue"; const BaklavaNode = Components.Node; // example, replace with your component: import MyNodeRenderer from "./MyNodeRenderer.vue"; ```...
When I tried to open https://v1.baklava.tech/baklavajs/api/index.html it gives me 404 error
Let say I have this simple C++ class: ``` class test{ public: int my_data_member; int my_function(){ return 1; } }; ``` I know how to map the `my_function` member function:...
 I'm not sure how to check installed Pluto/PlutoUI version, these are my imported packages: ``` begin using Geodesy using SatelliteToolbox using Dates using TimeZones using StaticArrays using JuMP import...
**Description** In https://docs.kubos.com/1.21.0/ecosystem/services/app-service.html#passing-additional-arguments it shows that to pass in additional arguments we need to use a string ``` mutation { startApp(name: "mission-app", args: "--verbose --release") { success } } ```...
**Description** https://github.com/kubos/kubos/blob/c4b5269f63efca745244d887c0a0b2c30a730da6/services/file-service/src/lib.rs#L97-L98 shows that file transfer service should print out its transfer_chunk_size and hash_chunk_size at service startup, but it doesn't do that in Kubos 1.21.0 for Beaglebone Black. I found...
I'm using kubos-file-client as a Python subprocess for my proof of concept Python ground station because I haven't make a proper Python bindings for it, but when transfer fails, kubos-file-client...
**Description** I set transfer_chunk_size to 256 bytes according to https://docs.kubos.com/1.21.0/ecosystem/services/file.html#configuration as to simulate ground to OBC link, we used SLIP with default MTU of 296 bytes. But when I checked...
**Description** In https://docs.kubos.com/1.21.0/ecosystem/services/file.html#running-the-service-from-kubos it says that to start file transfer service you run ``` $ /etc/init.d/S90file-service start ``` but in Kubos 1.21 in https://github.com/kubos/kubos/releases/tag/1.21.0 actual init.d file name is `S90kubos-core-file-transfer`...