.gitignore
author Edouard Tisserant <edouard@beremiz.fr>
Mon, 28 Oct 2024 16:02:47 +0100
changeset 4032 1ffff67678ad
parent 3961 f01bd9a40554
permissions -rw-r--r--
Add ExtendedCall to PLCObject as a replacement of RemoteExec and reflect it in eRPC interface.

ExtendedCall is a generic remote procedure call that runtime code can register to and that IDE extensions can call.
For example a fieldbus extension can use ExtendedCall to browse the fieldbus devices connected to the runtime.
3796
b0507eb2be1f update .gitignore
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
diff changeset
     1
*.pyc
b0507eb2be1f update .gitignore
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
diff changeset
     2
**/__pycache__
3807
87f670154294 Updaye .gitignore
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3796
diff changeset
     3
.vscode
87f670154294 Updaye .gitignore
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3796
diff changeset
     4
**/build/**
3819
4582f0fcf4c4 update .gitignore
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3807
diff changeset
     5
*.class
4582f0fcf4c4 update .gitignore
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3807
diff changeset
     6
**/.svghmithumbs/**
3826
f370b71e3418 Update .gitignore
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3819
diff changeset
     7
**/my_*.der
f370b71e3418 Update .gitignore
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3819
diff changeset
     8
**/my_*.pem
3841
02fa0f8484d7 Tests: align on requirements.txt
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3826
diff changeset
     9
tests/tools/Docker/requirements.txt
3940
934bd46a7500 C++ runtime: WIP: untested PLCObject implementation. Still missing tracing.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3841
diff changeset
    10
**/management.json
934bd46a7500 C++ runtime: WIP: untested PLCObject implementation. Still missing tracing.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3841
diff changeset
    11
**/.secret
934bd46a7500 C++ runtime: WIP: untested PLCObject implementation. Still missing tracing.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3841
diff changeset
    12
3942
ac6408084c60 Doc: Add about section (PR #33)
Nadim Khan <34601107+nadim4114@users.noreply.github.com>
parents: 3841
diff changeset
    13
doc/_build/**
3940
934bd46a7500 C++ runtime: WIP: untested PLCObject implementation. Still missing tracing.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3841
diff changeset
    14
doc/locale/**
934bd46a7500 C++ runtime: WIP: untested PLCObject implementation. Still missing tracing.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3841
diff changeset
    15
934bd46a7500 C++ runtime: WIP: untested PLCObject implementation. Still missing tracing.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3841
diff changeset
    16
C_runtime/**/*.d
3961
f01bd9a40554 C runtime: cosmetic changes
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3943
diff changeset
    17
C_runtime/**/*.o
f01bd9a40554 C runtime: cosmetic changes
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3943
diff changeset
    18
beremiz_runtime
f01bd9a40554 C runtime: cosmetic changes
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3943
diff changeset
    19
**/tmp/**