ncpcalls: rename remaining C32 transport symbols

Rename the remaining C32-prefixed transport helpers, probe helpers, types and
constants to protocol-oriented NCP names.

This removes implementation-oriented c32/C32 naming from the shared NCP API and
transport layer while keeping the current c32ncp.c/c32ncp.h file names until
the later ncpapi.c/ncpapi.h rename. The new names avoid conflicts by using
ncp_* helper names and NCP_* type/constant prefixes.

No behavior change.
This commit is contained in:
Mario Fetka
2026-05-29 11:32:09 +02:00
parent 9e89f85622
commit 40e7ebf939
11 changed files with 132 additions and 132 deletions

View File

@@ -125,13 +125,13 @@ The modern Client32 path is implemented through a small reusable helper layer:
The working sequence is:
```text
C32_MapVar_Probe(4,0)
NCP_MapVar_Probe(4,0)
-> obtains the active connection reference
C32_OpenRef_Probe()
NCP_OpenRef_Probe()
-> opens that reference and returns a Client32 handle
C32_NCP87_Raw5_Probe()
NCP_Raw5_Probe()
-> sends NCP 87 requests through COMPATNcpRequestReply
```