MBSP

Microcontroller Board Support Package

User Tools

Site Tools


configuration_json

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
configuration_json [ 20.11.2024 15:33] – [SPI group] larsconfiguration_json [ 23.02.2025 15:27] (current) – [project_type] lars
Line 3: Line 3:
 ====== File format specification of configuration definition ====== ====== File format specification of configuration definition ======
  
-this describes the possible elements of a configuration description in json format.+this describes the possible elements of a configuration description in JSON format.
  
-The json format is defined here: https://www.json.org/json-en.html+{{odt>toc:leader_sign=.;indents=0,0.5,1;}} 
 + 
 +The JSON format is defined here: https://www.json.org/json-en.html
  
 All elements not listed as essential are optional. Being optional means that they can be missing and the configuration is still valid. All elements not listed as essential are optional. Being optional means that they can be missing and the configuration is still valid.
Line 21: Line 23:
 The settings defined in this file cover different areas. The settings defined in this file cover different areas.
  
 +  * general settings
   * peripheral settings   * peripheral settings
   * driver layer   * driver layer
   * signal names   * signal names
 +
 +==== general settings ====
 +general settings affect the whole project. These settings are general configurations and switches to enable additional features or to select modes for the project.
  
 ==== peripheral settings ==== ==== peripheral settings ====
Line 55: Line 61:
 Keys like *digital_output* and *SPI* represent group names and are taken from a predefined set of group names understood by MBSP. Keys nested within them are arbitrary user-defined names for a instance in that group. In those instances the keys are from the defined set specific for that group. Keys like *digital_output* and *SPI* represent group names and are taken from a predefined set of group names understood by MBSP. Keys nested within them are arbitrary user-defined names for a instance in that group. In those instances the keys are from the defined set specific for that group.
  
 +
 +===== general settings =====
 +
 +these are settings on the top layer that effect the whole project.
        
-===== vendor_name =====+==== vendor_name ====
  
-Name of the company that sells the micro controller. As listed on chipselect.org+Name of the company that sells the micro controller. As listed on https://chipselect.org
  
-type: string+**type**: string
  
-===== chip_name =====+==== chip_name ====
  
-model number of the micro controller.+Model number of the micro controller. As listed on https://chipselect.org
  
-type: string+**type**: string
  
 Model number is truncated so that it only contains relevant differences for code generation: flash and ram sizes are relevant, temperature range or package are not. Model number is truncated so that it only contains relevant differences for code generation: flash and ram sizes are relevant, temperature range or package are not.
 +
 +
 +==== project_type ====
 +
 +what type of project to generate.
 +
 +**type**: string
 +
 +**default**: "make"
 +
 +Possible values are:
 +  * "hal only" : only creates the hardware driver files (in the hal/ folder) and hardware definitions (in the hal/hw/ folder)
 +  * "embeetle" : create an Embeetle IDE project
 +  * "make" :  creates a makefile based "blinky" project.
 +
  
 ===== clock group ===== ===== clock group =====
  
-configuration of the used cocks+configuration of the used clocks
  
 TBD TBD
Line 98: Line 123:
   * open drain   * open drain
  
-type: enum+**type**: enum 
 + 
 +**default**: push pull
  
 ==== pad ==== ==== pad ====
Line 104: Line 131:
 defines the chip pad that the signal should be output on. defines the chip pad that the signal should be output on.
  
-type: string+**type**: string 
 + 
 +**default**: no default possible 
 + 
 +==== invert ==== 
 + 
 +If this setting is set to "on" then turning this output "on" will generate a Low (Gnd) signal. Turning it "off" will generate a High (Vcc) level. 
 + 
 +If this setting is set to "off" (=default) then turning this output "on" will generate a High (Vcc) signal. Turning it "off" will generate a Low (Gnd) level. 
 + 
 +**type**: string 
 + 
 +**default**: "off" 
  
 ===== digital_input group ===== ===== digital_input group =====
Line 117: Line 157:
 defines the chip pad that the signal should be read from. defines the chip pad that the signal should be read from.
  
-type: string+**type**: string
  
  
Line 143: Line 183:
 ===== UART group ===== ===== UART group =====
  
-TBD+This group defines all used UART interfaces. 
 + 
 +Each UART is a sub group with the UART name as the group name. 
 + 
 +<code> 
 +    "UART":
 +        "debug_uart":
 +            "pads":
 +              "TX": "PA5", 
 +              "RX": "PA6", 
 +              "CTS": "PA7", 
 +              "RTS": "PA15" 
 +            }, 
 +            "bits_per_packet": "8", 
 +            "parity": "None", 
 +            "stop_bits": "1", 
 +            "baud_rate": "115200", 
 +            "hardware_flow_control": "no", 
 +            "receive_buffer_size": "100", 
 +            "send_buffer_size": "500", 
 +        } 
 +    } 
 +</code> 
 + 
 + 
 +==== pads ==== 
 + 
 +defines the used signal pins. At least one pin must be present(either TX or RX). Pins that are not present will not be used/ are not available for functionality. 
 + 
 +=== TX === 
 + 
 +The UART will send data on this pin. (Idle = High). 
 + 
 +=== RX === 
 + 
 +The UART will receive (read) signals on this pin. 
 + 
 +=== CTS === 
 + 
 +Clear to send signal for flow control. 
 + 
 +=== RTS === 
 + 
 +Request to Send signal for flow control. 
 + 
 + 
 +==== bits_per_packet ==== 
 + 
 +defines the number of data bits. Possible values are: 
 +  * 7 
 +  * 8 
 +  * 9 
 + 
 +**type**: enum 
 + 
 +**default**:
 + 
 +==== parity ==== 
 + 
 +defines the parity bit. Possible values are: 
 +  * None : no parity bit used. 
 +  * Odd :  the parity bits value makes sure that the packet contains an **__odd__** number of bits with value "1"
 +  * Even : the parity bits value makes sure that the packet contains an **__even__** number of bits with value "1"
 + 
 +**type**: enum 
 + 
 +**default**: None 
 + 
 + 
 +==== stop_bits ==== 
 + 
 +defines the number of stop bits. Possible values are: 
 +  * 1 
 +  * 1,5 
 +  * 2 
 + 
 +**type**: enum 
 + 
 +**default**:
 + 
 + 
 +==== baud_rate ==== 
 + 
 +defines the number of bits send per second. 
 + 
 +**type**: int 
 + 
 +**default**: 115200 
 + 
 + 
 +==== hardware_flow_control ==== 
 + 
 +defines if the Request to Send (RTS) and Clear to send (CTS) signals should be used for flow control. Possible values are: 
 +  * off (RTS and CTS pins are not used. 
 +  * RTS only 
 +  * CTS only 
 +  * on (RTS and CTS signals are used) 
 + 
 +**type**: enum 
 + 
 +**default**: off 
 +==== receive_buffer_size ==== 
 + 
 +defines the number of bytes in the receive buffer of the driver. 
 + 
 +**type**: int 
 + 
 +**default**: 100 
 + 
 +==== send_buffer_size ==== 
 + 
 +defines the number of bytes in the send buffer of the driver. 
 + 
 +**type**: int 
 + 
 +**default**: 500
  
  
Line 172: Line 327:
  
   * //encoder_spi//: the user-defined name of the SPI peripheral. It is possible to call it SPI1,  but that doesn't necessarily mean that it will be mapped to the SPI1 peripheral of the target microcontroller. The mapping will be determined by the desired pads for the SPI signals and possibly other desired settings.   * //encoder_spi//: the user-defined name of the SPI peripheral. It is possible to call it SPI1,  but that doesn't necessarily mean that it will be mapped to the SPI1 peripheral of the target microcontroller. The mapping will be determined by the desired pads for the SPI signals and possibly other desired settings.
 +
   * //pads// specifies the desired pad for each signal of this SPI peripheral. Usually, this will uniquely define the peripheral to be used. Unused signals can be skipped.   * //pads// specifies the desired pad for each signal of this SPI peripheral. Usually, this will uniquely define the peripheral to be used. Unused signals can be skipped.
-  * //role: master//: role can be //master// or //slave//,  also known as //controller// and //peripheral// or a number of other terms. Which synonyms do we allow? 
- 
-**DICUSS(Lars):** We need to have a complete list here. I have no suggestions, as I only use Master and Slave. 
- 
-**REPLY(Johan)** I don't think there are any other roles for SPI. 
  
-**DICUSS(Lars):** What I meant was all "synonyms" we want to allow. For me limiting it to "master" and "slave" would be OK. I find  //controller// and //peripheral// confusingBut I would be OK with other "synonyms"Maybe "hostand "device" ?+  //role: master//: role can be //master// or //slave//,  also known as //host// and //device//. There exist a number of other terms, but we limit ourselves to two terms for each role We include //master// and //slave// because these are the most common ones,  and //host// and //device// to offer an alternative for those who are not happy with these historically charged terms.
  
-  * //communication_mode: duplex//: communication mode can be //duplex// (the traditional mode using MISO and MOSI to transmit and receive at the same time) or //half-duplex//, meaning the same wire between master MOSI and slave MISO is used for both directions. Unidirectional communication can be achieved by specifying //duplex// and connecting only MISO-to_MISO or MOSI-to_MOSI wires. See also //receive-only// below.+  * //communication_mode: duplex//: communication mode can be //duplex// (the traditional mode using MISO and MOSI to transmit and receive at the same time) or //half-duplex//, meaning the same wire between master MOSI and slave MISO is used for both directions. Unidirectional communication can be achieved by specifying //duplex// and connecting only MISO-to-MISO or MOSI-to-MOSI wires. See also //receive-only// below. 
 +  * 
   * //receive-only// (RXOMEN in the F411) disables the transmission signal (MISO in slave mode, MOSI in master mode). According to the F411 manual, it is useful when communicating with multiple slaves to avoid data collisions (not completely clear to me;  avoids NSS signals for master-to-slave communication?   * //receive-only// (RXOMEN in the F411) disables the transmission signal (MISO in slave mode, MOSI in master mode). According to the F411 manual, it is useful when communicating with multiple slaves to avoid data collisions (not completely clear to me;  avoids NSS signals for master-to-slave communication?
  
Line 189: Line 341:
  
 **DICUSS(Lars):** " master-MOSI is connected to slave-MISO" AHHH. Why? That is just wrong! **DICUSS(Lars):** " master-MOSI is connected to slave-MISO" AHHH. Why? That is just wrong!
 +
 +**REPLY(Johan)** I agree: this is a bad idea. Unfortunately,  it is what they do in the F411 chip. Whether you actually need to mkae that connection depends on the other device;  in the F411 settings,  it only means that half duplex communication uses MOSI in master mode and MISO in slave mode. Unidirectional receive-only uses MISO in master mode and MOSI in slave mode,  and vice-versa for transmit-only.  
 +
 +Maybe we just need a setting to specify which pad should be used for half-duplex communication.
 +
 +This whole //receive-only// setting is a bit obscure to me; shall we postpone it to a later version?
  
   * //frame_format// can be //motorola// or //ti//. //ti// format has implications for clock polarity and phase and nss handling that are currently unclear;  we may need to figure this out and possibly replace this parameter by more explicit settings.   * //frame_format// can be //motorola// or //ti//. //ti// format has implications for clock polarity and phase and nss handling that are currently unclear;  we may need to figure this out and possibly replace this parameter by more explicit settings.
 +
   * //clock_polarity//: //idle_low// or //idle_high// sets the clock level between transmissions of data. Also often called CPOL.   * //clock_polarity//: //idle_low// or //idle_high// sets the clock level between transmissions of data. Also often called CPOL.
 +
   * //clock_phase// sets the clock transition at which the data is sampled;  //sample_on_leading_edge// samples the data on the edge from idle value to non-idle value, and //sample_on_trailinging_edge// samples the data on the edge from non-idle value to idle value. Also often called CPHA.   * //clock_phase// sets the clock transition at which the data is sampled;  //sample_on_leading_edge// samples the data on the edge from idle value to non-idle value, and //sample_on_trailinging_edge// samples the data on the edge from non-idle value to idle value. Also often called CPHA.
  
Line 198: Line 358:
 ^ Mode ^ CPOL ^ CPHA ^ description^ ^ Mode ^ CPOL ^ CPHA ^ description^
 | 0 | 0 | 0 | clock: idle_low, phase: sample_on_leading_edge | | 0 | 0 | 0 | clock: idle_low, phase: sample_on_leading_edge |
-| 1 | 0 | 1 | clock: idle_low, phase: sample_on_trailinging_edge |+| 1 | 0 | 1 | clock: idle_low, phase: sample_on_trailing_edge |
 | 2 | 1 | 0 | clock: idle_high, phase: sample_on_leading_edge | | 2 | 1 | 0 | clock: idle_high, phase: sample_on_leading_edge |
-| 3 | 1 | 1 | clock: idle_high, phase: sample_on_trailinging_edge |+| 3 | 1 | 1 | clock: idle_high, phase: sample_on_trailing_edge |
  
   * //bit_order// can be //msb_first// or //lsb_first//   * //bit_order// can be //msb_first// or //lsb_first//
Line 211: Line 371:
  
 **DICUSS(Lars):** I added a report file to the list of generated files.(mbsp_report.txt) We probably then need a format for that also,... **DICUSS(Lars):** I added a report file to the list of generated files.(mbsp_report.txt) We probably then need a format for that also,...
 +
 +**REPLY(Johan):** Right, but probably not necessary for version 1.
  
   * //crc//: //enabled// or //disabled//. The Geehy F411 SPI peripherals provide hardware for CRC generation and checking    * //crc//: //enabled// or //disabled//. The Geehy F411 SPI peripherals provide hardware for CRC generation and checking 
Line 225: Line 387:
  
 **DICUSS(Lars):** can we move this to version 2? long answer: It depends. The CRC, as you said, depends on the device/communication partner. And that might expect some crazy initialization value and some Xor at the end or whatever. I would suggest to look at this from the use case perspective and find solutions for one use case after the other. That way these settings are derived from the use case and we do not depend on the user to provide consistent settings. Then we can also have a generic solution where the user has to give all the variables (initialization, Xor,..) and w then do exactly that and hope for the best. **DICUSS(Lars):** can we move this to version 2? long answer: It depends. The CRC, as you said, depends on the device/communication partner. And that might expect some crazy initialization value and some Xor at the end or whatever. I would suggest to look at this from the use case perspective and find solutions for one use case after the other. That way these settings are derived from the use case and we do not depend on the user to provide consistent settings. Then we can also have a generic solution where the user has to give all the variables (initialization, Xor,..) and w then do exactly that and hope for the best.
 +
 +**REPLY(Johan)** Agreed: let's postpone this.  It is not essential for a demo, so we can even postpone it until after the demo.
  
 **REPLY(Johan)** How/where would you specify the parameters of the connected device? Many other SPI parameters specified here also depend on the connected device. For example clock polarity and phase and bit order must match the device's expectations. **REPLY(Johan)** How/where would you specify the parameters of the connected device? Many other SPI parameters specified here also depend on the connected device. For example clock polarity and phase and bit order must match the device's expectations.
  
 **DICUSS(Lars):** We could add explicit support for some devices. Then the user would just select the device and all the dependent settings (CPOL/CPHA,CRC, bits per transfer..) would be set accordingly. Does that make sense? **DICUSS(Lars):** We could add explicit support for some devices. Then the user would just select the device and all the dependent settings (CPOL/CPHA,CRC, bits per transfer..) would be set accordingly. Does that make sense?
 +
 +**REPLY(Johan)** Does that mean that for supported devices,  you don't need an explicit SPI configuration?  That makes sense to me. I think we would still need an SPI configuration for unsupported devices; it will take some time before we can support all existing devices in the world :-) . It is OK for me to initially only provide SPI settings for unsupported devices without CRC; that can be added later.
  
 ===== QSPI group ===== ===== QSPI group =====
Line 275: Line 441:
  
 TBD TBD
- 
-===== ... group ===== 
- 
-TBD 
- 
- 
- 
- 
- 
- 
  
configuration_json.1732113233.txt.gz · Last modified: 20.11.2024 15:33 by lars