Implement cancellation. Rename, etc.

This commit is contained in:
NIIBE Yutaka
2013-05-28 10:27:22 +09:00
parent 6d568f9184
commit 699344840b
5 changed files with 269 additions and 106 deletions

View File

@@ -27,9 +27,9 @@ pwm (void *arg)
while (1)
{
set_led (u&v);
chopstx_usleep (m);
chopstx_usec_wait (m);
set_led (0);
chopstx_usleep (100-m);
chopstx_usec_wait (100-m);
}
return NULL;
@@ -47,9 +47,9 @@ blk (void *arg)
while (1)
{
v = 0;
chopstx_usleep (200*1000);
chopstx_usec_wait (200*1000);
v = 1;
chopstx_usleep (200*1000);
chopstx_usec_wait (200*1000);
}
return NULL;
@@ -75,7 +75,7 @@ usb_intr (void *arg)
while (1)
{
chopstx_wait_intr (&interrupt);
chopstx_intr_wait (&interrupt);
/* Process interrupt. */
usb_interrupt_handler ();
@@ -138,7 +138,7 @@ main (int argc, const char *argv[])
chopstx_create (&thd, &attr, usb_intr, NULL);
chopstx_usleep (200*1000);
chopstx_usec_wait (200*1000);
chopstx_mutex_lock (&mtx);
chopstx_cond_signal (&cnd0);
@@ -158,7 +158,7 @@ main (int argc, const char *argv[])
while (1)
{
u ^= 1;
chopstx_usleep (200*1000*6);
chopstx_usec_wait (200*1000*6);
usb_lld_write (ENDP1, "Hello, World with Chopstx!\r\n", 28);
chopstx_mutex_lock (&usb_mtx);