ArduinoLibraryResult

data class ArduinoLibraryResult(val libraryPath: String, val memoryRequirements: MemoryLayout, val supportedOperations: List<String>, val generatedFiles: List<String>)(source)

Represents the result of generating an Arduino library from a neural network model.

This data class contains all information about the generated Arduino library, including file paths, memory requirements, and metadata about the generated code.

Constructors

Link copied to clipboard
constructor(libraryPath: String, memoryRequirements: MemoryLayout, supportedOperations: List<String>, generatedFiles: List<String>)

Properties

Link copied to clipboard

List of all files created during library generation

Link copied to clipboard

Path to the generated Arduino library directory

Link copied to clipboard

Memory layout information for the generated code

Link copied to clipboard

List of operation types that were successfully converted