CNCzone.com-The Largest Machinist Community on the net!



Home Page Mark Forums Read Today's Posts My Replies Classifieds Reviews Photo Gallery Web Links Share Files Advertise With Us Ad List
Go Back   CNCzone.com-The Largest Machinist Community on the net! > WoodWorking Machines > DIY-CNC Router Table Machines > Joes CNC Model 2006



This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 06-10-2010, 09:27 PM
 
Join Date: Apr 2010
Location: philippines
Posts: 15
levon18lopez is on a distinguished road
How to setup this Modbus interfac to mach3,and the schematic where is step,dir output

How to setup this Mod bus Interface to mach3,and the schematic where is step,direction output..

http://www.fieldofcows.com/index.php...dbus_Interface








/*!---------------------------------------------------------------------------
** @file main.c
**
** @brief Firmware main file for USB Modbus I/O Interface
**
**---------------------------------------------------------------------------
**
**
** This file is part of the firmware for the Field of Cows USB Modbus I/O
** project (USBModbus)
**
** USBModbus 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 3 of the License, or
** (at your option) any later version.
**
** USBModbus is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with USBModbus. If not, see <http://www.gnu.org/licenses/>.
**
*/
/*---------------------------------------------------------------------------
** Includes
*/
#include <p18f4550.h>
#include <portb.h>

#include "usb_config.h"
#include "USB/usb.h"
#include "USB/usb_function_cdc.h"
#include "USB/usb_device.h"

#include "modbus.h"

/*---------------------------------------------------------------------------
** Defines and Macros
*/
#pragma config PLLDIV = 5 // (20 MHz crystal)
#pragma config CPUDIV = OSC1_PLL2
#pragma config USBDIV = 2 // Clock source from 96MHz PLL/2
#pragma config FOSC = HSPLL_HS
#pragma config FCMEN = OFF
#pragma config IESO = OFF
#pragma config PWRT = OFF
#pragma config BOR = ON
#pragma config BORV = 3
#pragma config VREGEN = ON // USB Voltage Regulator
#pragma config WDT = OFF
#pragma config WDTPS = 32768
#pragma config MCLRE = ON
#pragma config LPT1OSC = OFF
#pragma config PBADEN = OFF
#pragma config STVREN = ON
#pragma config LVP = OFF
#pragma config XINST = OFF // Extended Instruction Set
#pragma config CP0 = OFF
#pragma config CP1 = OFF
#pragma config CPB = OFF
#pragma config WRT0 = OFF
#pragma config WRT1 = OFF
#pragma config WRTB = OFF // Boot Block Write Protection
#pragma config WRTC = OFF
#pragma config EBTR0 = OFF
#pragma config EBTR1 = OFF
#pragma config EBTRB = OFF

#define CLOCK_FREQ 48000000
#define GetSystemClock() (CLOCK_FREQ)

/*---------------------------------------------------------------------------
** Typedefs
*/

/*---------------------------------------------------------------------------
** Local function prototypes
*/
void handle_high_isr(void);
void handle_low_isr(void);

/*---------------------------------------------------------------------------
** Data
*/

/*---------------------------------------------------------------------------
** Interrupt vectors and handlers
*/

//
// Define the high priority interrupt vector jump at address 0x08
//
#pragma code HIGH_INTERRUPT_VECTOR = 0x08
void
high_isr(
void
) {
// The code here is in a vector table so we have only got a few
// bytes to play with. Therefore just jump to the isr
_asm goto handle_high_isr _endasm
}

//
// Define the low priority interrupt vector jump at address 0x18
//
#pragma code LOW_INTERRUPT_VECTOR = 0x18
void
low_isr(
void
) {
_asm goto handle_low_isr _endasm
}

#pragma code

//
// The vector jump for the high priority interrupt jumps
// to this function. The #pragma interrupt ensures that
// the correct return is generated from the function
//
#pragma interrupt handle_high_isr
void
handle_high_isr(
void
) {
// Handle any pending USB tasks
USBDeviceTasks();
}

//
// The vector jump for the low priority interrupt jumps
// to this function. The #pragma interruptlow ensures that
// the correct return is generated from the function
//
#pragma interruptlow handle_low_isr
void
handle_low_isr(
void
) {
}

//--------------------------------------------------------------------------
/*!
** @brief Main firmware process entry point
**
*/
void main(void) {
unsigned char count = 0;

// Initialise the USB library
USBDeviceInit();
USBDeviceAttach();

// Initialise the Modbus routines
#ifdef MODECONTROL_SW
setMode(MODE_RTU);
#endif
initialiseModbus();

// Enter the main processing loop
while (1) {
if ((USBDeviceState >= CONFIGURED_STATE) &&
(USBSuspendControl != 1)) {
processModbus();
CDCTxService();
}
}
}

//--------------------------------------------------------------------------
/*!
** @brief Handler that is called when the host sets the baud rate for
** the CDC connection
**
** This function gets called when a SetLineCoding command
** is sent on the bus. This function will evaluate the request
** and determine if the application should update the baudrate
** or not.
**
*/
void
set_line_coding_handler(
void
) {
//If the request is not in a valid range
if (cdc_notice.GetLineCoding.dwDTERate.Val > 115200) {
// Stalling the endpoint is the correct thing to do in this
// case but it can cause the host application to crash if it
// doesn't handle this properly. If that is the case then
// the line below can be commented-out
USBStallEndpoint(0, 1);
}
else {
DWORD_VAL baud;

// Update the baudrate info in the CDC driver
CDCSetBaudRate(cdc_notice.GetLineCoding.dwDTERate.Val);

// Update the baudrate of the UART
baud.Val = (GetSystemClock() / 4) / line_coding.dwDTERate.Val - 1;
SPBRG = baud.v[0];
SPBRGH = baud.v[1];
}
}

//--------------------------------------------------------------------------
/*!
** @brief USB event callback
**
** @return TRUE
**
** This function is called from the USB stack to
** notify a user application that a USB event
** occured. This callback is in interrupt context
**
** @param[in] event Type of event
** @param[in] pdata Pointer to event data
** @param[in] size Size of event data
*/
BOOL
USER_USB_CALLBACK_EVENT_HANDLER(
USB_EVENT event,
void *pdata,
WORD size
) {
// We just forward these events to the relevant CDC handler
switch (event) {
case EVENT_CONFIGURED:
CDCInitEP();
break;
case EVENT_EP0_REQUEST:
USBCheckCDCRequest();
break;
case EVENT_TRANSFER:
Nop();
break;
default:
break;
}
return TRUE;
}
Reply With Quote

Reply




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Mach3 Diy Pendant Schematic xlukkajr Mach Wizards, Macros, & Addons 3 02-17-2012 09:34 AM
Looking For A Job- MODBUS I/O Controller for Mach3 (MBIO)! icm Product Announcements & Manufacturer News 0 05-20-2009 11:54 AM
Is there an easy dc-dc step-up schematic? Gyvven General Electronics Discussion 10 01-24-2009 10:02 AM
Mach3 with Hitachi VFD using Modbus swinn Mach Software (ArtSoft software) 2 11-28-2008 12:44 PM
Other controllers that output step/direction? cn00728 General Electronics Discussion 3 02-02-2005 01:30 PM




All times are GMT -5. The time now is 10:53 PM.





Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO
Template-Modifications by TMS

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361