view target-utils/c139explore/dac.c @ 39:280826b807e3

c139explore: dac and dacon commands added for exercising the vibrator
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 26 Oct 2016 01:53:12 +0000
parents
children 7ecb70b0ac36
line wrap: on
line source

/*
 * Code for exercising Motorola's vibrator, which is driven
 * via the Iota auxiliary DAC on this phone.
 */

#include <sys/types.h>
#include "types.h"
#include "abbdefs.h"

void
cmd_dacon()
{
	abb_reg_write(TOGBR1, 0x20);
}

void
cmd_dac(argbulk)
	char *argbulk;
{
	char *argv[2];
	u32 val;

	if (parse_args(argbulk, 1, 1, argv, 0) < 0)
		return;
	val = strtoul(argv[0], 0, 0);
	if (val > 0x3FF) {
		printf("ERROR: argument out of range\n");
		return;
	}
	abb_reg_write(AUXDAC, val);
}