view target-utils/c139explore/dac.c @ 698:9ecbf1bf2e1b

fc-iram: added '+' to getopt magic string like in fc-xram Both fc-iram and fc-xram now support secondary program invokation. If the user needs to pass some options to the secondary program, we don't want fc-iram or fc-xram to claim these options as its own, thus we need to stop getopt() from reordering arguments. This fix was already implemented in fc-xram a long time ago, but the issue was overlooked when secondary program invokation ability was added to fc-iram.
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 31 Mar 2020 03:23:26 +0000
parents ce636b0ffb3d
children
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"

extern u_long strtoul();

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);
}

void
cmd_vibe(argbulk)
	char *argbulk;
{
	char *argv[2];
	u32 val;
	int c;

	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);
	for (;;) {
		c = serial_in_poll();
		if (c >= 0)
			break;
	}
	abb_reg_write(AUXDAC, 0);
}