No description
Find a file
2024-10-10 02:49:36 +08:00
.github/workflows Update tests.yml 2024-05-30 23:24:20 +08:00
src Less common bands below 2.3GHz 2024-06-18 04:04:57 +08:00
tests Formatter: Add shorthand for bool type 2024-04-21 04:26:06 +08:00
.gitignore Initial commit 2024-02-21 21:10:12 +08:00
LICENSE Initial commit 2024-02-21 21:10:12 +08:00
nimAdif.nimble 0.1.2 2024-10-10 02:49:36 +08:00
nimsc.nim Add document tools 2024-02-21 22:32:36 +08:00
README.md Add document tools 2024-02-21 22:32:36 +08:00

nimAdif

An Amateur Data Interchange Format (ADIF) formatter and parser library written purely in Nim.

It contains only a simple formatter in 0.1.x. Parser would be implemented in later version.

Build

Using the library

Add requires directive in your .nimble file:

requires "nimAdif ~= 0.1.0"

And import and use it in your code:

import nimAdif

var record = AdifLogRecord()
record.call = "BI1MHK"
record.freq = 438_500_000

let log = result.dumps()

Build Document

nimble docs

Default directory for docs are htmldocs/. You may change it in nimsc.nim.