- 有休…
- 病休…
- 育休…
- 年収(月給、賞与など)…
- 住宅補助…
- 通勤補助…
- 資格手当…
- 人事評価…
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bus 001 Device 005: ID 10c4:8912 Cygnal Integrated Products, Inc. | |
Device Descriptor: | |
bLength 18 | |
bDescriptorType 1 | |
bcdUSB 2.00 | |
bDeviceClass 2 Communications | |
bDeviceSubClass 0 | |
bDeviceProtocol 0 | |
bMaxPacketSize0 64 | |
idVendor 0x10c4 Cygnal Integrated Products, Inc. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Linux version 3.1.9+ (grayg@dc4-arm-01) (gcc version 4.5.1 (Broadcom-2708) ) #90 Wed Apr 18 18:23:05 BST 2012 | |
CPU: ARMv6-compatible processor [410fb767] revision 7 (ARMv7), cr=00c5387d | |
CPU: VIPT nonaliasing data cache, VIPT nonaliasing instruction cache | |
Machine: BCM2708 | |
Memory policy: ECC disabled, Data cache writeback | |
On node 0 totalpages: 49152 | |
free_area_init_node: node 0, pgdat c03b5660, node_mem_map c0402000 | |
Normal zone: 384 pages used for memmap | |
Normal zone: 0 pages reserved | |
Normal zone: 48768 pages, LIFO batch:15 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get update && sudo apt-get install subversion # as you need, anything else such as gmake, g++ | |
svn co https://ninja-scan-light.googlecode.com/svn/trunk ninja-scan-light | |
cd ninja-scan-light/tool | |
make | |
# insert your NinjaScan-Light to RasPi USB port | |
sudo ./build_GCC/log_CSV.out /dev/ttyACM0 --direct_sylphide=on --page=A --page=G --page=M --page=P | |
# if you want to run log_CSV.out without sudo, then | |
# $ sudo usermod -a -G dialout <your username, default is "pi"> | |
# and restart your Pi. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Make an empty file named "direct.gps" in a MicroSD(HC). | |
2. Make a file named "gps.cfg" in the MicroSD(HC) with containing the following binary (printed in hex format). | |
B5 62 09 01 10 00 C8 16 00 00 00 00 00 00 97 69 21 00 00 00 02 10 2B 22 | |
B5 62 09 01 10 00 0C 19 00 00 00 00 00 00 83 69 21 00 00 00 02 11 5F F0 | |
B5 62 06 01 08 00 02 10 00 01 01 01 00 00 24 2F | |
B5 62 06 01 08 00 02 11 00 01 01 01 00 00 25 36 | |
(This information depends on GPS receiver firmware version. please see http://wiki.openstreetmap.org/wiki/UbloxRAW) | |
3. Insert the MicroSD(HC) to NinjaScan-Light and power-on. NinjaScan-Light will be recognized as COMx. | |
4. Configure RTKLIB input; Rover from Serial type via COMx and u-blox format. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* SPI testing utility (using spidev driver) | |
* | |
* Copyright (c) 2007 MontaVista Software, Inc. | |
* Copyright (c) 2007 Anton Vorontsov <[email protected]> | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation; either version 2 of the License. | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# modify Kconfig to change to tristate | |
# make driver | |
sudo make prepare | |
sudo make modules_prepare KERNELRELEASE=$(uname -r) | |
sudo make SUBDIRS=drivers/tty/serial modules | |
sudo make SUBDIRS=drivers/tty/serial modules_install | |
sudo mv /lib/modules/3.12.26/extra/* /lib/modules/3.12.26+/extra/ | |
sudo rm -r /lib/modules/3.12.26 | |
sudo depmod |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Options +FollowSymLinks | |
RewriteEngine On | |
RewriteBase / | |
# If the visit is neither html nor directory, stop | |
RewriteCond %{LA-U:REQUEST_URI} !\.html?$ [NC] | |
RewriteRule ^ - [L] | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@C:\path\to\bin\ruby.exe -x "%~f0" %* | |
@exit /b %ERRORLEVEL% | |
#!/usr/bin/ruby | |
# coding: utf-8 | |
address = ARGV[0] | |
def runner(&b) | |
if RUBY_PLATFORM =~ /mingw/ then | |
t = Thread::new{b.call} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- c_icap-0.4.2/os/unix/shared_mem.c.orig 2015-08-27 18:01:51.000000000 +0900 | |
+++ c_icap-0.4.2/os/unix/shared_mem.c 2016-02-13 17:46:21.000000000 +0900 | |
@@ -99,6 +99,9 @@ const ci_shared_mem_scheme_t sysv_scheme | |
#if defined(USE_POSIX_MAPPED_FILES) | |
+#if defined(__APPLE__) | |
+#define MAP_ANONYMOUS MAP_ANON | |
+#endif |
OlderNewer