nuttx-apps/industry/foc/fixed16/foc_velocity.c

195 lines
5.1 KiB
C

/****************************************************************************
* apps/industry/foc/fixed16/foc_velocity.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <errno.h>
#include <errno.h>
#include "industry/foc/foc_log.h"
#include "industry/foc/fixed16/foc_velocity.h"
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* Name: foc_velocity_init_b16
*
* Description:
* Initialize the FOC velocity handler (fixed16)
*
* Input Parameter:
* h - pointer to FOC velocity handler
* ops - pointer to FOC velocity handler operations
*
****************************************************************************/
int foc_velocity_init_b16(FAR foc_velocity_b16_t *h,
FAR struct foc_velocity_ops_b16_s *ops)
{
int ret = OK;
DEBUGASSERT(h);
DEBUGASSERT(ops);
/* Velocity ops */
DEBUGASSERT(ops->init);
DEBUGASSERT(ops->deinit);
DEBUGASSERT(ops->cfg);
DEBUGASSERT(ops->run);
/* Reset handler */
memset(h, 0, sizeof(foc_velocity_b16_t));
/* Connect ops */
h->ops = ops;
/* Initialize velocity */
ret = h->ops->init(h);
if (ret < 0)
{
FOCLIBERR("ERROR: ops->init failed %d\n", ret);
goto errout;
}
errout:
return ret;
}
/****************************************************************************
* Name: foc_velocity_deinit_b16
*
* Description:
* De-initialize the FOC velocity handler (fixed16)
*
* Input Parameter:
* h - pointer to FOC velocity handler
*
****************************************************************************/
int foc_velocity_deinit_b16(FAR foc_velocity_b16_t *h)
{
int ret = OK;
DEBUGASSERT(h);
/* Deinitialize velocity */
h->ops->deinit(h);
/* Reset data */
memset(h, 0, sizeof(foc_velocity_b16_t));
return ret;
}
/****************************************************************************
* Name: foc_velocity_cfg_b16
*
* Description:
* Configure the FOC velocity handler (fixed16)
*
* Input Parameter:
* h - pointer to FOC velocity handler
* cfg - pointer to velocity handler configuration data
*
****************************************************************************/
int foc_velocity_cfg_b16(FAR foc_velocity_b16_t *h, FAR void *cfg)
{
DEBUGASSERT(h);
DEBUGASSERT(cfg);
return h->ops->cfg(h, cfg);
}
/****************************************************************************
* Name: foc_velocity_zero_b16
*
* Description:
* Zero the FOC velocity handler (fixed16)
*
* Input Parameter:
* h - pointer to FOC velocity handler
*
****************************************************************************/
int foc_velocity_zero_b16(FAR foc_velocity_b16_t *h)
{
DEBUGASSERT(h);
return h->ops->zero(h);
}
/****************************************************************************
* Name: foc_velocity_dir_b16
*
* Description:
* Set the FOC velocity handler direction (fixed16)
*
* Input Parameter:
* h - pointer to FOC velocity handler
* dir - sensor direction (1 if normal -1 if inverted)
*
****************************************************************************/
int foc_velocity_dir_b16(FAR foc_velocity_b16_t *h, b16_t dir)
{
DEBUGASSERT(h);
return h->ops->dir(h, dir);
}
/****************************************************************************
* Name: foc_velocity_run_b16
*
* Description:
* Process the FOC velocity handler data (fixed16)
*
* Input Parameter:
* h - pointer to FOC velocity handler
* in - pointer to FOC velocity handler input data
* out - pointer to FOC velocity handler output data
*
****************************************************************************/
int foc_velocity_run_b16(FAR foc_velocity_b16_t *h,
FAR struct foc_velocity_in_b16_s *in,
FAR struct foc_velocity_out_b16_s *out)
{
DEBUGASSERT(h);
DEBUGASSERT(in);
DEBUGASSERT(out);
/* Run velocity handler */
return h->ops->run(h, in, out);
}