bldc/lispBM
Benjamin Vedder 8606afca8e Added support for dynamic loading of lisp symbols if they are missing 2022-02-23 22:56:30 +01:00
..
lispBM Merge commit '22ef0a5861726fb2f64cc65e64e716d3112b509b' 2022-02-23 20:30:52 +01:00
README.md Added more math functions 2022-02-14 19:19:48 +01:00
lispbm.mk Added support for dynamic loading of lisp symbols if they are missing 2022-02-23 22:56:30 +01:00
lispif.c Added support for dynamic loading of lisp symbols if they are missing 2022-02-23 22:56:30 +01:00
lispif.h Added support for dynamic loading of lisp symbols if they are missing 2022-02-23 22:56:30 +01:00
lispif_vesc_dynamic_loader.c Added support for dynamic loading of lisp symbols if they are missing 2022-02-23 22:56:30 +01:00
lispif_vesc_extensions.c Added support for dynamic loading of lisp symbols if they are missing 2022-02-23 22:56:30 +01:00

README.md

LispBM

This is the VESC-integration of lispBM written by Joel Svensson. It allows the VESC to run lisp-programs in a sandboxed environment.

Feature Overview

  • Development and testing in VESC Tool with variable live monitoring and plotting as well as CPU and memory monitoring.
  • Sandboxed environment, meaning that the Lisp code (hopefully) cannot freeze or crash the rest of the VESC code when it gets stuck or runs out of heap or stack memory.
  • The application runs on the VESC itself without the need for having VESC Tool connected and is stored in flash memory.
  • When a lisp-application is written to the VESC it is automatically started on each boot.

Documentation

Basics about LispBM are documented here. The VESC-specific extensions are documented in this section. Note that VESC Tool includes a collection of examples that can be used as a starting point for using lisp on the VESC.

Various Commands

print

(print arg1 ... argN)

Print to the VESC Tool Lisp console. Example:

(print "Hello World")

Should work for all types.

timeout-reset

(timeout-reset)

Reset the timeout that stops the motor. This has to be run on at least every second to keep the motor running. The timeout time can be configured in App Settings->General.

get-ppm

(get-ppm)

Read the decoded value on the PPM input and returns 0.0 to 1.0. Note that the PPM app has to be configured and running. Example:

(print (list "PPM Value: " (get-ppm)))

Note that control type can be set to Off in the PPM app to get the input without running the motor automatically, which is useful when running the motor from lisp.

get-encoder

(get-encoder)

Get angle from selected encoder in degrees.

set-servo

(set-servo value)

Set servo output to value. Range 0 to 1. Note that the servo output has to be enabled in App Settings -> General.

get-vin

(get-vin)

Get input voltage.

select-motor

(select-motor motor)

Select which motor to control on dual-motor hardware. Options are 1 for motor 1 and 2 for motor 2.

get-selected-motor

(get-selected-motor)

Get currently selected motor on dual motor hardware.

get-bms-val

(get-bms-val val optValArg)

Get value from BMS. Examples:

(get-bms-val "v_tot") ; Total voltage
(get-bms-val "v_charge") ; Charge input voltage
(get-bms-val "i_in_ic") ; Measured current (negative means charging)
(get-bms-val "ah_cnt") ; Amp hour counter
(get-bms-val "wh_cnt") ; Watt hour counter
(get-bms-val "cell_num") ; Number of cells in series
(get-bms-val "v_cell" 2) ; Cell 3 voltage (index starts from 0)
(get-bms-val "bal_state 2") ; Cell 3 balancing state. 0: not balancing, 1: balancing
(get-bms-val "temp_adc_num") ; Temperature sensor count
(get-bms-val "temps_adc" 2) ; Get sensor 3 temperature (index starts from 0)
(get-bms-val "temp_ic") ; Balance IC temperature
(get-bms-val "temp_hum") ; Humidity sensor temperature
(get-bms-val "hum") ; Humidity
(get-bms-val "temp_cell_max") ; Maximum cell temperature
(get-bms-val "soc") ; State of charge (0.0 to 1.0)
(get-bms-val "can_id") ; CAN ID of BMS
(get-bms-val "ah_cnt_chg_total") ; Total ah charged
(get-bms-val "wh_cnt_chg_total") ; Total wh charged
(get-bms-val "ah_cnt_dis_total") ; Total ah discharged
(get-bms-val "wh_cnt_dis_total") ; Total wh discharged
(get-bms-val "msg_age") ; Age of last message from BMS in seconds

get-adc

(get-adc ch)

Get ADC voltage on channel ch (0, 1 or 2).

systime

(systime)

Get system time in ticks since boot. Every tick is 0.1 ms.

secs-since

(secs-since timestamp)

Get seconds elapsed since systime timestamp.

set-aux

(set-aux ch state)

Set AUX output ch (1 or 2) to state. Example:

(set-aux 1 1) ; Set AUX1 to ON.

Note: The AUX output mode must be set to Unused in Motor Settings->General->Advanced. Otherwise the firmware will change the AUX state directly after it is set using this function.

get-imu-rpy

(get-imu-rpy)

Get roll, pitch and yaw from the IMU in radians.

The function (ix ind list) can be used to get an element from the list. Example:

(ix 0 (get-imu-rpy)) ; Get roll (index 0)

get-imu-quat

(get-imu-quat)

Get a list of quaternions from the IMU (q0, q1, q2 and q3).

get-imu-acc

(get-imu-acc)

Get a list of the x, y and z acceleration from the IMU in G.

get-imu-gyro

(get-imu-gyro)

Get a list of the x, y and z angular rate from the IMU in degrees/s.

get-imu-mag

(get-imu-mag)

Get a list of the x, y and z magnetic field strength from the IMU in uT. Note that most IMUs do not have a magnetometer.

send-data

(send-data dataList)

Send a list of custom app data to VESC Tool. This can be read from a Qml script for example.

Example of sending the numbers 1, 2, 3 and 4:

(send-data (list 1 2 3 4))

Motor Set Commands

set-current

(set-current current)

Set motor current in amperes.

set-current-rel

(set-current-rel current)

Set motor current relative to the maximum current. Range -1 to 1. For example, if the maximum current is set to 50A, (set-current-rel 0.5) will set the current to 25A.

set-duty

(set-duty dutycycle)

Set duty cycle. Range -1.0 to 1.0.

set-brake

(set-brake current)

Set braking current.

set-brake-rel

(set-brake-rel current)

Set braking current relative to the maximum current, range 0.0 to 1.0.

set-handbrake

(set-handbrake current)

Set handbrake current. This sets an open loop current that allows to hold the motor still even at 0 speed at the cost of efficient.

set-handbrake-rel

(set-handbrake-rel current)

Same as set-handbrake, but with a current relative to the maximum current in the range 0.0 to 1.0.

set-rpm

(set-rpm rpm)

Set RPM speed control.

set-pos

(set-pos pos)

Position control. Set motor position in degrees, range 0.0 to 360.0.

Motor Get Commands

get-current

(get-current)

Get motor current. Positive means that current is flowing into the motor and negative means that current is flowing out of the motor (regenerative braking).

get-current-dir

(get-current-dir)

Get directional current. Positive for torque in the forward direction and negative for torque in the reverse direction.

get-current-in

(get-current-in)

Get input current. Will always be lower than the motor current. The closer the motor spins to full speed the closer the input current is to the motor current.

get-duty

(get-duty)

Get duty cycle. Range -1.0 to 1.0.

get-rpm

(get-rpm)

Get motor RPM. Negative values mean that the motor spins in the reverse direction.

get-temp-fet

(get-temp-fet)

Get MOSFET temperature.

get-temp-motor

(get-temp-motor)

Get motor temperature.

get-speed

(get-speed)

Get speed in meters per second. Requires that the number of motor poles, wheel diameter and gear ratio are set up correctly.

get-dist

(get-dist)

Get the distance traveled since start in meters. As with (get-speed) this requires that the number of motor poles, wheel diameter and gear ratio are set up correctly.

get-batt

(get-batt)

Get the battery level, range 0.0 to 1.0. Requires that the battery type and number of cells is set up correctly.

get-fault

(get-fault)

Get fault code.

CAN-Commands

Notice that all canget-commands rely on the status messages being active on the VESCs on the CAN-bus. That can be done from App Settings->General->Can status message mode.

canset-current

(canset-current id current)

Set current over CAN-bus on VESC with id. Example for setting 25A on VESC with id 115:

(canset-current 115 25)

canset-current-rel

(canset-current-rel id current)

Same as above, but relative current in the range -1.0 to 1.0. See (set-current) for details on what relative current means.

canset-duty

(canset-duty id duty)

Set duty cycle over CAN-bus on VESC with id. Range -1.0 to 1.0.

canset-brake

(canset-brake id current)

Set braking current over CAN-bus.

canset-brake-rel

(canset-brake-rel id current)

Set relative braking current over CAN-bus. Range 0.0 to 1.0.

canset-rpm

(canset-rpm id rpm)

Set rpm over CAN-bus.

canset-pos

(canset-pos id pos)

Set position control in degrees over CAN-bus. Range 0.0 to 1.0.

canget-current

(canget-current id)

Get current over CAN-bus on VESC with id.

canget-current-dir

(canget-current-dir id)

Get directional current over CAN-bus on VESC with id. See (get-current-dir) for what directional means.

canget-current-in

(canget-current-in id)

Get input current over CAN-bus on VESC with id.

canget-duty

(canget-duty id)

Get duty cycle over CAN-bus on VESC with id.

canget-rpm

(canget-rpm id)

Get RPM over CAN-bus on VESC with id.

canget-temp-fet

(canget-temp-fet id)

Get MOSFET temperature over CAN-bus on VESC with id.

canget-temp-motor

(canget-temp-motor id)

Get motor temperature over CAN-bus on VESC with id.

canget-speed

(canget-speed id)

Get speed in meters per second over CAN-bus on VESC with id. The gearing, wheel diameter and number of motor poles from the local configuration will be used for converting the RPM to meters per second.

canget-dist

(canget-dist id)

Get distance traveled in meters over CAN-bus on VESC with id. As with (canget-speed id), the local configuration will be used to convert the tachometer value to meters.

can-list-devs

(can-list-devs)

List CAN-devices that have been heard on the CAN-bus since boot. This function is fast as it does not actively scan the CAN-bus, but it relies on the devices sending status message 1.

can-scan

(can-scan)

Actively scan the CAN-bus and return a list with devices that responded. This function takes several seconds to run, but also finds devices that do not actively send messages and only respond to a ping message.

can-send-sid

(can-send-sid id data)

Send standard ID CAN-frame with id and data. Data is a list with bytes, and the length of the list (max 8) decides how many data bytes are sent. Example:

(can-send-sid 0x11FF11 (list 0xAA 0x11 0x15))

can-send-eid

(can-send-eid id data)

Same as (can-send-sid), but sends extended ID frame.

Math Functions

sin

(sin angle)

Get the sine of angle. Unit: Radians.

cos

(cos angle)

Get the cosine of angle. Unit: Radians.

tan

(tan angle)

Get the tangent of angle. Unit: Radians.

asin

(asin x)

Get the arc sine of x. Unit: Radians.

acos

(acos x)

Get the arc cosine of x. Unit: Radians.

atan

(atan x)

Get the arc tangent of x. Unit: Radians.

atan2

(atan2 y x)

Get the arc tangent of y / x. Unit: Radians. This version uses the signs of y and x to determine the quadrant.

pow

(pow base power)

Get base raised to power.

sqrt

(sqrt x)

Get the square root of x.

log

(log x)

Get the base-e logarithm of x.

log10

(log10 x)

Get the base-10 logarithm of x.

Bit Operations

bits-enc-int

(bits-enc-int initial number offset bits)

Put bits of number in initial at offset and return the result. For example, if the bits initial are aaaaaaaa, number is bbb, offset is 2 and bits is 3 the result is aaabbbaa. For reference, the corresponding operation in C is:

initial &= ~((0xFFFFFFFF >> (32 - bits)) << offset);
initial |= (number << (32 - bits)) >> (32 - bits - offset);

bits-dec-int

(bits-dec-int value offset size)

Return size bits of value at offset. For example if the bits of value are abcdefgh, offset is 3 and size it 3 a number with the bits cde is returned. The corresponding operation in C is:

val >>= offset;
val &= 0xFFFFFFFF >> (32 - bits);

Raw Commands

Raw data commands useful for debugging hardware issues.

raw-adc-current

(raw-adc-current motor phase useRaw)

Get raw current measurements. Motor is the motor index (1 or 2), phase is the phase (1, 2 or 3) and useRaw is whether to convert the measurements to currents or to use raw ADC values.

Example for reading phase B on motor 1 as raw ADC values:

(raw-adc-current 1 2 1)

raw-adc-voltage

(raw-adc-voltage motor phase useRaw)

Same as (raw-adc-current), but measures phase voltages instead.

raw-mod-alpha

(raw-mod-alpha)

Get alpha modulation. Range -1.0 to 1.0 (almost).

raw-mod-beta

(raw-mod-beta)

Get beta modulation. Range -1.0 to 1.0 (almost).

raw-mod-alpha-measured

(raw-mod-alpha-measured)

Same as (raw-mod-alpha), but derives the modulation from the phase voltage reading and/or dead-time compensation.

raw-mod-beta-measured

(raw-mod-beta-measured)

Same as (raw-mod-beta), but derives the modulation from the phase voltage reading and/or dead-time compensation.

raw-hall

(raw-hall motor optSamples)

Read hall sensors for motor (1 or 2) and return their states in a list. The optional argument optSamples (max 20) can be used to set how many times the hall sensors are sampled; if it is not supplied the number of samples from the motor configuration will be used.

The function (ix ind list) can be used to get an element from the list. Example:

(ix 0 (raw-hall 1)) ; Get hall sensor 1 state (index 0)

Events

Events can be used to execute code for certain events, such as when CAN-frames are received. To use events you must first register an event handler, then enable the events you want to receive. As the event handler blocks until the event arrives it is useful to spawn a thread to handle events so that other things can be done in the main thread at the same time.

The following example shows how to spawn a thread that handles SID (standard-id) CAN-frames and custom app data:

(define proc-sid (lambda (id data)
    (print (list id data)) ; Print the ID and data
))

(define proc-data (lambda (data)
    (progn
        (print data)
)))

(define event-handler (lambda ()
    (progn
        (recv ((signal-can-sid (? id) . (? data)) (proc-sid id data))
        (recv ((signal-data-rx ? data) (proc-data data))
              (_ nil)) ; Ignore other events
        (event-handler) ; Call self again to make this a loop
)))

; Spawn the event handler thread and pass the ID it returns to C
(event-register-handler (spawn event-handler))

; Enable the CAN event for standard ID (SID) frames
(event-enable "event-can-sid")

; Enable the custom app data event
(event-enable "event-data-rx")

Possible events to register are

(event-enable "event-can-sid") ; Sends (signal-can-sid id data), where id is U32 and data is a list of i28
(event-enable "event-can-eid") ; Sends (signal-can-eid id data), where id is U32 and data is a list of i28
(event-enable "event-data-rx") ; Sends (signal-data-rx data), where data is a list of i28

The CAN-frames arrive whenever data is received on the CAN-bus and data-rx is received for example when data is sent from a Qml-script in VESC Tool.

How to update

To update from remote repository:

git remote add lispBM git@github.com:svenssonjoel/lispBM.git
git subtree pull --squash --prefix=lispBM/lispBM/ lispBM master

The first command might fail if it already is added, but the second one should still work. If there are uncomitted changes you can run git stash before the commands and git stash pop after them.