Commit a0ba4f38 authored by TheDebbio's avatar TheDebbio
Browse files

broken: py lo med + init conf

Broken, in progress

Modified LocalOscillator py Med with string passed during component creation.

Added some conf code fo c++ reciver componente
parent 2316bde9
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
{
    "configurations": [
        {
            "name": "Win32",
            "includePath": [
                "${workspaceFolder}/**"
            ],
            "defines": [
                "_DEBUG",
                "UNICODE",
                "_UNICODE"
            ],
            "windowsSdkVersion": "10.0.17763.0",
            "compilerPath": "C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.16.27023/bin/Hostx64/x64/cl.exe",
            "cStandard": "c11",
            "cppStandard": "c++17"
        }
    ],
    "version": 4
}
 No newline at end of file

.vscode/settings.json

0 → 100644
+5 −0
Original line number Diff line number Diff line
{
    "files.associations": {
        "*.idl": "cpp"
    }
}
 No newline at end of file
+0 −0

File moved.File mode changed from 100755 to 100644.

+0 −0

File moved.File mode changed from 100755 to 100644.

+15 −3
Original line number Diff line number Diff line
@@ -2,8 +2,20 @@
          xmlns:baci="urn:schemas-cosylab-com:BACI:1.0"
               xmlns:cdb="urn:schemas-cosylab-com:CDB:1.0"
               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               IP="192.167.189.2" PORT="2096">
                
               IP="192.167.189.2" 
               PORT="2096"
               FREQ_CMD="set LOFREQ %f\n"
               FREQ_ANS_OK="ACK\n"
               AMP_CMD="set LOAMP %f\n"
               AMP_ANS_OK="ACK\n"
               RF_ON_CMD="set LORF ON\n"
               RF_ON_ANS_OK="ACK\n"
               RF_OFF_CMD="set LORF OFF\n"
               RF_OFF_ANS_OK="ACK\n"
               FREQ_QUERY="get LOFREQ\n"
               FREQ_QUERY_NOK="NAK"
               AMP_QUERY="get LOAMP\n"
               AMP_QUERY_NOK="NAK">
               
	<frequency units="MHz"/>
	<amplitude units="dBm"/>
Loading