Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
config.h
- Committer:
- bwang
- Date:
- 2016-10-30
- Revision:
- 12:5723a4fa5864
- Parent:
- 10:f49df0fe0382
- Child:
- 13:41d102a53caf
File content as of revision 12:5723a4fa5864:
#ifndef __CONFIG_H
#define __CONFIG_H
#define POS_OFFSET 1.49f //1.73f
#define POLE_PAIRS 3.0f
#define RESOLVER_LOBES 3.0f
#define CURRENT_U ib
#define CURRENT_V ia
#define CPR 4096
#define PWMA PA_9
#define PWMB PA_8
#define PWMC PA_10
#define EN PB_15
#define IA PA_4
#define IB PB_0
#define I_SCALE_RAW 25.0f //mv/A
#define R_UP 12000.0f //ohms
#define R_DOWN 3600.0f //ohms
#define R_BIAS 3600.0f //ohms
#define AVDD 3300.0f //mV
#define I_OFFSET (AVDD * R_DOWN * R_UP / (R_DOWN * R_UP + R_BIAS * (R_DOWN + R_UP)))
#define I_SCALE (R_BIAS * R_DOWN * I_SCALE_RAW / (R_DOWN * R_UP + R_BIAS * (R_DOWN + R_UP)))
#define BUS_VOLTAGE 20.0f
#define K_LOOP 1.0f
#define KI_BASE 0.01f
#define KP (K_LOOP / BUS_VOLTAGE)
#define KI (KI_BASE * K_LOOP / BUS_VOLTAGE)
#define INTEGRAL_MAX 1.0f
#define set_dtc(phase, value) *phase = (value)
#define PI 3.141593f
#endif