VS 2010 Signed And Unsigned Integer NOT: For Hex File Checksum Computation?

Feb 22, 2012

I have been trying to compute the checksum for a line of hex code. This is to create a hex file which will be loaded onto an embedded micro.Some of you guys may not know how this is done so very briefly:

a line of hex bytes:

: 10 01 00 00 21 46 01 36 01 21 47 01 36 00 7E FE 09 D2 19 01 40

The underlined bytes are taken and summed. (in this case the decimal 960). and the bold is the checksum Only the 8LSB (or single least significant byte) is needed to compute the checksum... which in this case, 960 = 03C0 in hex, so only C0 is needed.Two's complement is then taken:

step 1) logical not of C0 which is
step 2) add one (integer)
BIN...........DEC...HEX

[code]....

So here is the code I have been using: (quick mention that in the string passed, the hex bytes are all grouped together, there are no space characters)

Public Sub CreateLine(ByVal Data As String)
'Dim BDataArray(DataLength) As Byte
Dim IDataArray(Data.Length) As Integer

[code]....

where i get into trouble is where i commented 'i get into trouble'. My code works, but it's rather crude Now, in that line i first convert the hex value (string) "SChecksum" into an integer. I want to NOT this, so I get my step 2 from my explanation. However, the results appears to be a signed logical NOT. which gives me the wrong answer. My hashed togther version simply subtracts 256 before the not, in order to give me the correct answer.

Basically, I would love for someone to chime in and point out the flaws in my function, and push me towards figuring out the 'proper' way of doing this. Also I can't quite wrap my head around what would happen in the case a string were passed to my function that is over 16 bits, but I imagine I would have to subtract a larger value than 256, before doing the NOT in this case?(whilst we're on the subject of functions, I've used a 'sub', in which case should I used a sub, and which case should I use a function?).

View 4 Replies


ADVERTISEMENT

Converting To/from Signed/Unsigned Integers?

Jun 23, 2009

I'm working with byte arrays and building and disassembling Int16/UInt16 and Int32/UInt32 from them. I'd like to not worry about the Sign bit until I return the final value and just have the code return the appropriate value for the data type that was requested to be converted to/from the byte array

View 3 Replies

Reading Signed And Unsigned Values From A Stream In Both Byte Orders?

May 23, 2011

I need to read signed and unsigned 8 bit, 16 bit and 32 bit values from a file stream which may be little-endian or big-endian (it happens to be a tiff file which carries the byte order indicator at the start).I initially started by writing my own functions to read the values and was able to do so for unsigned values. e.g.

Public Function ReadUInt32() As UInt32
Dim b(4) As Byte
input.Read(b, 0, 4)

[code]....

But then I started looking at signed values and my brain broke.As an alternative, I found the IO.BinaryReader which will let me read signed values directly but doesn't seem to have any way to indicate that the data is big-endian or little-endian.Is there a nice way of handling this? Failing that, can someone tell me how to convert multiple bytes into signed values (in both byte orders)?

View 2 Replies

64 Bit Unsigned Integer Overflow - In VB 2010 Express Edition ?

Jul 25, 2011

I have an application that deals with some rather large number values. I wanted the values to allow a roll over so I compiled the program with Remove Integer Overflow Checks turned on. The 32 bit numbers roll over just fine but the 64 bit unsigned integers still throw an over flow exception. Is this a bug in the compiler?

View 7 Replies

Converting Unsigned Byte To Signed Byte?

May 6, 2007

I would like to know how to convert a unisgned byte to signed byte

Atm I got this

a
Function readSignedByte() As SByte
'-128/127
Dim b As SByte

[Code]....

it doesn't work one that well works for numbers positive over 127 if lets say ReadByte() has 128 it would give overflow error which I don't want it to give I would like it to overflow the number to negivate value aka its signed value.

View 5 Replies

Use An Unsigned 32 Bit Integer?

Sep 29, 2011

i want to use an unsigned 32 bit integer. According to [URL]the rage of that type is

UInteger
UInt32
4 bytes
0 through 4,294,967,295 (unsigned)

[code].....

View 7 Replies

Change This Checksum Function To Accept An Integer Input Instead Of A String?

Dec 31, 2009

This function doesn't work if I change the input argument 'pdu' from a string to an int.Would someone please help me figure out what to do here so that the checksum does not add the ascii value of the int argument but rather the actual integer value?I took out a few lines of the actual function but it adds the input argument to a packet sent out via TCP protocol.This function shows the integer value just fine in the string that gets encoded as a byte array. the checksum is wrong.!

''Public Function buildpacket(pdu As Integer) is what I want.
Public Function buildpacket(pdu As String)
Dim packet As String

[code]....

View 1 Replies

How To Pass Integer As Unsigned Parameter In .Net

Jul 16, 2010

I'm new to VB.Net. I'm using a library call setInstance(ByVal instance As UInteger) in my VB.Net code. The parameter I need to pass is an Integer. Is there anything I need to do to convert the integer parameter to an unsigned integer? The number is garunteed to be positive and less than 10.

View 3 Replies

Conversion - Converting Bytes To A Signed Integer

Nov 29, 2009

I have query that involves a cross-language operation, namely converting 4 SBytes to a signed integer. The source language for this operation is Java, which utilizes the ByteBuffer in order to extract a signed integer from the data stream. The inner workings of ByteBuffer are at best a black box to me, as I haven't been able to find any hints to what actually goes on when Java extracts the integer. [Code]

View 2 Replies

Implementing Two's Complement On Unsigned Integer Types?

Jun 24, 2011

How can I implement a two's complement in VB.NET using unsigned integer types such as Byte, UShort, UInteger and ULong? Can I cast a UInteger to an Integer?

View 1 Replies

C# - How To Properly Read 16 Byte Unsigned Integer With BinaryReader

Jun 9, 2010

I need to parse a binary stream in .NET to convert a 16 byte unsigned integer. I would like to use the BinaryReader.ReadUIntXX() functions but there isn't a BinaryReader.ReadUInt128() function available. I assume I will have to roll my own function using the ReadByte function and build an array but I don't know if this is the most efficient method?

View 3 Replies

VS 2010 Book Penalty Computation?

Mar 23, 2012

I have a 2 DateTimePicker on my design.1 DateTimePicker for Due Date and another 1 DateTimePicker for Date Returned. Now I would like to automatically compute for penalty which is 24 per day just clicking on the Date Returned's DateTimePicker.For example,A student borrowed a book today and the librarian assigned the due date when to return it.

Take note, the date today is 03/23/2012.and the librarian assigned a due date into 03/25/2012 (the exact date when the student should return it).When the student attempts to return the book at 03/28/2012, and the librarian clicks on the Date Returned's DateTimePicker, the penalty will show as 72 and so on and so for.So I am asking on the codes or tips on how should i do it to make this things work?

View 1 Replies

VS 2010 (One App): 24-bit Word - Creating UDP Datagram - Calculating Checksum

Sep 22, 2011

I'm trying to create an app that controls a BSS BLU-80 (DSP) through Ethernet. I've written a few basic programs in the past, but nothing that used sockets or even required calculating a checksum. One of the values I need to send has to be 24 bits. This one really has me scratching my head. From the manufacturer's docs:

[Code]...

View 5 Replies

VS 2010 - Unsigned 128 Bit Number - Min / Max

Nov 7, 2010

I am trying to create a UInt128 structure, based on some C code I found. The 128 bit number is stored as two UInt64's. All was going well until:1. I tried to define MaxValue and MinValue. The code I found was

[code]...

View 2 Replies

VS 2010 Unsigned 128 Bit Number

Nov 7, 2010

I am trying to create a UInt128 structure, based on some C code I found. The 128 bit number is stored as two UInt64's. All was going well until:

1.I tried to define MaxValue and MinValue.[code]

2. I tried to add. Apparently in C if you do the equivalent of this:[code]you do not get an overflow, the result "wraps".

View 4 Replies

VS 2010 - Generate A CRC16-X25 Checksum In The Form HiByte And LowByte

Apr 12, 2012

I've wanting to generate a CRC16-X25 checksum in the form HiByte and LowByte. All the examples I've found by searching are either VB6 which uses functions and data types that are no longer supported or C, C++ etc. Does anyone have a simple VB.Net version? Speed is not an issue.

View 10 Replies

Digital Signature How To Embedded Crl In Signed File

Mar 8, 2010

here know how to do to sign a file with certificate chain and crl embedded?I don't have ideia how to do that.

View 5 Replies

VS 2008 Developing A Custom Component (single Signed Dll File)

Nov 26, 2011

Im currently developing a custom logging component, that we will deploy with all our applications, windows services, webapps, windows apps etc. I have a few questions of various nature. The component is a single signed dll file:

1) Which is the "safest" way to get the current directory? For example, in the config file, in the config section I have a property "logpath". The application will read this and write a log file depending in what they write:

c:myapplog (it will write a log here, create whatever folders it need) /Log (directly under the installed app directory, like c:program filesmyappLog) Log (same as above) I need something that work with both windows and web apps, for webapps it will log under the virtual directory of the aspnet app.

2) For exception handling, if nothing special is happening, like in the DAL, I get a sql server exception, is there any point in using

[Code]...

View 10 Replies

Age Computation Using Datetimepicker?

Jun 21, 2010

How can I get the value of the year, month and/or day from the DateTimePicker if I'm trying to compute for the age? I've tried

Dim x As String = ""
x = Date.FromOADate(Val(DateTimePicker1.ToString))
MsgBox(x)
But it only gave me 12:00 AM.
and
DateDiff(DateInterval.Year, DateTimePicker1, Now.Date)

This time it said datetimepicker1 cannot be converted to date.

View 2 Replies

Computation Of Tax For Payroll System

Oct 6, 2011

I am working on program in vb2008 and facing problem in making a PAYROLL SYSTEM.. well, I've done some of its parts and functions but the main part of it is still unsolved -- the computation of tax!! our boss want that when you input a basic monthly salary, the semisalary will be computed.. minus the sss, pag-ibig and philhealth.. then the tax will be computed but also depending on the number of dependents the employee have...

Code:
Private Sub semiSalary_click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles semiSalary.Click
If basicSalary.Text = "" Then
MsgBox("Please enter a salary.", MsgBoxStyle.Exclamation, "Invalid")
Else
Dim result2 As Double
[Code] .....

What I've done is that I'm trying to display those values when the the textbox corresponding to it was clicked. We get each value in our database stored on textboxes from the formtables of sss & philhealth.
Attached image(s)

View 5 Replies

Display Computation Process On VB?

Jan 28, 2009

How to display computation process on VB 2008 form?

View 3 Replies

Fuction In Sql - Have A Computation On The Table?

Aug 28, 2009

[code]...

i would like to have a computation on the table (in sql) im creating en example computation:

Dim FiKg As Integer = ((txtFeNum.Text * txtFiFe.Text + txtMaNum.Text * txtFiMa.Text) * 7 / 1000)
Dim FemaleNum As String = txtFeNum.Text
Dim MaleNum As String = txtMaNum.Text
[code]...

View 1 Replies

Insert Command With Computation

Jun 22, 2010

i'm still developing my project bout evaluation of employees. I'm using the code below,I want to multiply the values of the two specific row/column inside my datatable and then insert the product in the KPIGRDEQUI field in the KWEEKDTL table.Is it possible to be done?

[Code]...

View 1 Replies

Inserting Computation In Sql Table Using .net?

Aug 29, 2009

for example i have this table

x ! y ! z ! Result !
54 ! 12 ! 5 ! !

54 came from --> Textbox1.Text
12 came from --> Textbox2.Text
5 came from --> Textbox3.Text
and i will display the result at row rowResult

[Code]...

View 1 Replies

Computation Error Variable Double

Jul 2, 2011

im having a simple computation problem here....

[Code]....

View 2 Replies

Accelerate The Generation Of The MD5 Checksum?

Mar 17, 2010

I'm working with some very large files residing on P2 (Panasonic) cards. Part of the process we employ is to first generate a checksum of the file we are going to copy, then copy the file, then run a checksum on the file to confirm that it copied OK. The problem is, is that files are large (70 GB+) and take a long time to complete. It's an issue since we will eventually be dealing with thousands of these files.

I would like to find a faster way to generate the checksum other than using the System.Security.Cryptography.MD5CryptoServiceProvider I don't care if this means using a specialized hardware card, provided it works and is not to ungodly expensive. I would prefer to have a method of encoding that provided some feedback as to how far the process has gone along so I can display it like I do now.

The application is written in vb.net. I would prefer to be able to use it as component, library, reference within my application, but I'm willing to call an outside application if there is enough improvement in the speed of generating the checksum.

Needless to say, the checksum must be consistent and correct.

View 2 Replies

Calculated Checksum Different Than C# Equivalent?

Feb 23, 2010

This comparison shows the different values of the known good checksum calculation (c#) as used by my client and what I 'hoped' was the vb.net equivalent. How can I get 405 rather than 513 as I currently do?

For i = 0 To length - 2 Step 1
cksum += sendFrameData(i + 5)
Next i

[Code]....

View 3 Replies

Convert A String To Get A Checksum?

Nov 30, 2011

I need to convert a string to get a checksum as follows;

Checksum

The checksum is the 8 LSB (least significant bits) of a simple addition of all octets (note that a message type '30' is two octets with the values 33 hex and 30 hex) following the STX character and until the checksum field. Note that all separators will be included in the checksum, but the STX, checksum and the ETX will not be included.

Dim str as string = "01/00064/O/30/12345678/87654321////////48656C6C6F20576F726C64/"

This should result in checksum = "C2" What type of checksum is this? what should I Google for? CRC, MD5, hash ?

View 1 Replies

Adding Bytes For Checksum From Array

Sep 14, 2009

Dim sum As Byte
Dim Trans_Array(_64K, 2) As Byte
Const _64K As Integer = 65536
sum = 0
For i = 0 To 15
BinaryStream.Write(Trans_Array(Address + i, RIGHT_FILE))
sum = (Convert.ToByte(sum + Trans_Array(Address + i, RIGHT_FILE)))
Next
I can't figure out how to calculate the checksum of the bytes from array.

View 10 Replies

Calculate A Checksum Value To Add To The String As The Last Byte To Be Sent?

Oct 4, 2011

I have the following hex string 40 50 4C 41 59 0D I am transmitting to a piece of equipment, I need to calculate a checksum value to add to the string as the last byte to be sent. The checksum byte is generated in such a manner that the result of addition of all bytes of a message will become 11111111(255). the code that you see here does not work can anyone tell/show me why? Whats important is the checksum calculation.

[Code]...

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved